Exception: Psych::SyntaxError

Inherits:
Exception show all
Defined in:
lib/psych/syntax_error.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(file, line, col, offset, problem, context) ⇒ SyntaxError

Returns a new instance of SyntaxError.



7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/psych/syntax_error.rb', line 7

def initialize file, line, col, offset, problem, context
  err      = [problem, context].compact.join ' '
  filename = file || '<unknown>'
  message  = "(%s): %s at line %d column %d" % [filename, err, line, col]

  @file    = file
  @line    = line
  @column  = col
  @offset  = offset
  @problem = problem
  @context = context
  super(message)
end

Instance Attribute Details

#columnObject (readonly)

Returns the value of attribute column



5
6
7
# File 'lib/psych/syntax_error.rb', line 5

def column
  @column
end

#contextObject (readonly)

Returns the value of attribute context



5
6
7
# File 'lib/psych/syntax_error.rb', line 5

def context
  @context
end

#fileObject (readonly)

Returns the value of attribute file



5
6
7
# File 'lib/psych/syntax_error.rb', line 5

def file
  @file
end

#lineObject (readonly)

Returns the value of attribute line



5
6
7
# File 'lib/psych/syntax_error.rb', line 5

def line
  @line
end

#offsetObject (readonly)

Returns the value of attribute offset



5
6
7
# File 'lib/psych/syntax_error.rb', line 5

def offset
  @offset
end

#problemObject (readonly)

Returns the value of attribute problem



5
6
7
# File 'lib/psych/syntax_error.rb', line 5

def problem
  @problem
end