Exception: Gnouch::Error
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- Gnouch::Error
- Defined in:
- lib/gnouch/error.rb
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(response) ⇒ Error
constructor
A new instance of Error.
- #to_s ⇒ Object
Constructor Details
#initialize(response) ⇒ Error
Returns a new instance of Error.
7 8 9 |
# File 'lib/gnouch/error.rb', line 7 def initialize(response) @response = response end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
5 6 7 |
# File 'lib/gnouch/error.rb', line 5 def response @response end |
Instance Method Details
#to_s ⇒ Object
11 12 13 |
# File 'lib/gnouch/error.rb', line 11 def to_s() "Gnouch Error: #{@response.inspect}" end |