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.
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 = "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 |