Exception: Psych::SyntaxError
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
self,
Exception ,
RuntimeError
|
|
Instance Chain:
self,
Exception ,
RuntimeError
|
|
Inherits: |
Psych::Exception
|
Defined in: | ext/psych/lib/psych/syntax_error.rb |
Class Method Summary
Instance Attribute Summary
Constructor Details
.new(file, line, col, offset, problem, context) ⇒ SyntaxError
# File 'ext/psych/lib/psych/syntax_error.rb', line 8
def initialize file, line, col, offset, problem, context err = [problem, context].compact.join ' ' filename = file || '<unknown>' = "(%s): %s at line %d column %d" % [filename, err, line, col] @file = file @line = line @column = col @offset = offset @problem = problem @context = context super( ) end