Exception: RubyBindgen::Parser::ParseError
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- RubyBindgen::Parser::ParseError
- Defined in:
- lib/ruby-bindgen/parser.rb
Instance Attribute Summary collapse
-
#details ⇒ Object
readonly
Returns the value of attribute details.
-
#path ⇒ Object
readonly
Returns the value of attribute path.
Instance Method Summary collapse
-
#initialize(path, details: []) ⇒ ParseError
constructor
A new instance of ParseError.
Constructor Details
#initialize(path, details: []) ⇒ ParseError
Returns a new instance of ParseError.
10 11 12 13 14 |
# File 'lib/ruby-bindgen/parser.rb', line 10 def initialize(path, details: []) @path = path @details = details super((path, details)) end |
Instance Attribute Details
#details ⇒ Object (readonly)
Returns the value of attribute details.
8 9 10 |
# File 'lib/ruby-bindgen/parser.rb', line 8 def details @details end |
#path ⇒ Object (readonly)
Returns the value of attribute path.
8 9 10 |
# File 'lib/ruby-bindgen/parser.rb', line 8 def path @path end |