Exception: Requests::Error

Inherits:
StandardError
  • Object
show all
Defined in:
lib/requests.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ Error

Returns a new instance of Error.



10
11
12
13
14
# File 'lib/requests.rb', line 10

def initialize(response)
  super(response.message)

  @response = response
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



8
9
10
# File 'lib/requests.rb', line 8

def response
  @response
end