Exception: Qinium::APIError
- Inherits:
-
StandardError
- Object
- StandardError
- Qinium::APIError
- Defined in:
- lib/qinium/errors.rb
Instance Attribute Summary collapse
-
#body ⇒ Object
readonly
Returns the value of attribute body.
-
#code ⇒ Object
readonly
Returns the value of attribute code.
-
#headers ⇒ Object
readonly
Returns the value of attribute headers.
Instance Method Summary collapse
-
#initialize(code, body, headers) ⇒ APIError
constructor
A new instance of APIError.
Constructor Details
#initialize(code, body, headers) ⇒ APIError
Returns a new instance of APIError.
7 8 9 10 11 12 |
# File 'lib/qinium/errors.rb', line 7 def initialize(code, body, headers) @code = code @body = body @headers = headers super(body) end |
Instance Attribute Details
#body ⇒ Object (readonly)
Returns the value of attribute body.
5 6 7 |
# File 'lib/qinium/errors.rb', line 5 def body @body end |
#code ⇒ Object (readonly)
Returns the value of attribute code.
5 6 7 |
# File 'lib/qinium/errors.rb', line 5 def code @code end |
#headers ⇒ Object (readonly)
Returns the value of attribute headers.
5 6 7 |
# File 'lib/qinium/errors.rb', line 5 def headers @headers end |