Exception: NestedText::Errors::InlineMissingValue

Inherits:
ParseError show all
Defined in:
lib/nestedtext/errors.rb

Instance Attribute Summary

Attributes inherited from ParseError

#colno, #lineno, #message_raw

Instance Method Summary collapse

Constructor Details

#initialize(line, colno) ⇒ InlineMissingValue

Returns a new instance of InlineMissingValue.



95
96
97
# File 'lib/nestedtext/errors.rb', line 95

def initialize(line, colno)
  super(line, line.indentation + colno, "expected value.")
end