Exception: Amara::Error
- Inherits:
-
StandardError
- Object
- StandardError
- Amara::Error
- Defined in:
- lib/amara/errors.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#response ⇒ Object
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(message = nil, response = nil) ⇒ Error
constructor
A new instance of Error.
Constructor Details
#initialize(message = nil, response = nil) ⇒ Error
Returns a new instance of Error.
6 7 8 9 |
# File 'lib/amara/errors.rb', line 6 def initialize( = nil, response = nil) super( || "Amara Error") self.response = response end |
Instance Attribute Details
#response ⇒ Object
Returns the value of attribute response.
4 5 6 |
# File 'lib/amara/errors.rb', line 4 def response @response end |