Exception: TinyClient::ResponseError

Inherits:
StandardError
  • Object
show all
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

Instance Method Summary collapse

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

#responseObject (readonly)

Returns the value of attribute response



4
5
6
# File 'lib/tiny_client/response_error.rb', line 4

def response
  @response
end