Exception: MathML::LaTeX::ParseError
- Inherits:
-
StandardError
- Object
- StandardError
- MathML::LaTeX::ParseError
- Defined in:
- lib/math_ml.rb
Instance Attribute Summary collapse
-
#done ⇒ Object
Returns the value of attribute done.
-
#rest ⇒ Object
Returns the value of attribute rest.
Instance Method Summary collapse
-
#initialize(message, rest = "", done = "") ⇒ ParseError
constructor
A new instance of ParseError.
- #inspect ⇒ Object
Constructor Details
#initialize(message, rest = "", done = "") ⇒ ParseError
Returns a new instance of ParseError.
407 408 409 410 411 |
# File 'lib/math_ml.rb', line 407 def initialize(, rest = "", done = "") @done = done @rest = rest super() end |
Instance Attribute Details
#done ⇒ Object
Returns the value of attribute done.
406 407 408 |
# File 'lib/math_ml.rb', line 406 def done @done end |
#rest ⇒ Object
Returns the value of attribute rest.
406 407 408 |
# File 'lib/math_ml.rb', line 406 def rest @rest end |
Instance Method Details
#inspect ⇒ Object
413 414 415 |
# File 'lib/math_ml.rb', line 413 def inspect "#{} : '#{@done}' / '#{@rest}'\n"+backtrace[0..5].join("\n") end |