Exception: QuidaxServerError
- Inherits:
-
StandardError
- Object
- StandardError
- QuidaxServerError
- Defined in:
- lib/quidax/error.rb
Overview
Base for errors thrown by the quidax server
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(response) ⇒ QuidaxServerError
constructor
A new instance of QuidaxServerError.
Constructor Details
#initialize(response) ⇒ QuidaxServerError
Returns a new instance of QuidaxServerError.
7 8 9 10 |
# File 'lib/quidax/error.rb', line 7 def initialize(response) super(response) @response = response end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
5 6 7 |
# File 'lib/quidax/error.rb', line 5 def response @response end |