Exception: Dropmire::ParseError
- Defined in:
- lib/dropmire/error/parse_error.rb
Instance Attribute Summary
Attributes inherited from Error
Instance Method Summary collapse
-
#initialize(message = "Malformed input string", text = nil) ⇒ ParseError
constructor
A new instance of ParseError.
- #to_s ⇒ Object
Constructor Details
#initialize(message = "Malformed input string", text = nil) ⇒ ParseError
Returns a new instance of ParseError.
5 6 7 |
# File 'lib/dropmire/error/parse_error.rb', line 5 def initialize(="Malformed input string", text=nil) super(, text) end |
Instance Method Details
#to_s ⇒ Object
9 10 11 |
# File 'lib/dropmire/error/parse_error.rb', line 9 def to_s "Parse" + super end |