Exception: TinyClient::ResponseError

Inherits:
BaseError
  • 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.



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

#responseObject (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_hashObject



13
14
15
# File 'lib/tiny_client/response_error.rb', line 13

def to_hash
  response.to_hash
end