Exception: TinyClient::ResponseError
- Inherits:
-
StandardError
- Object
- StandardError
- 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
6 7 8 9 |
# File 'lib/tiny_client/response_error.rb', line 6 def initialize(response) @response = response @message = "Error #{response.status} occured when calling #{response.url}" end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response
4 5 6 |
# File 'lib/tiny_client/response_error.rb', line 4 def response @response end |