Exception: TinyClient::ResponseError
- Defined in:
- lib/tiny_client/response_error.rb
Overview
Raised when an HTTP error occured during the request. See TinyClient::Response#error?
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(response) ⇒ ResponseError
constructor
A new instance of ResponseError.
- #to_hash ⇒ Object
Constructor Details
#initialize(response) ⇒ ResponseError
Returns a new instance of ResponseError.
8 9 10 11 |
# File 'lib/tiny_client/response_error.rb', line 8 def initialize(response) @response = response super("Error #{response.status} occured when calling #{response.url}") end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
6 7 8 |
# File 'lib/tiny_client/response_error.rb', line 6 def response @response end |
Instance Method Details
#to_hash ⇒ Object
13 14 15 |
# File 'lib/tiny_client/response_error.rb', line 13 def to_hash response.to_hash end |