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.
3 4 5 |
# File 'lib/dropmire/error/parse_error.rb', line 3 def initialize(="Malformed input string", text=nil) super(, text) end |
Instance Method Details
#to_s ⇒ Object
7 8 9 |
# File 'lib/dropmire/error/parse_error.rb', line 7 def to_s "Parse" + super end |