Exception: ActiveMerchant::Shipping::ResponseError

Inherits:
Error show all
Defined in:
lib/active_shipping/shipping/response.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response = nil) ⇒ ResponseError

Returns a new instance of ResponseError.



14
15
16
17
18
19
20
21
# File 'lib/active_shipping/shipping/response.rb', line 14

def initialize(response = nil)
  if response.is_a? Response
    super(response.message)
    @response = response
  else
    super(response)
  end
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



12
13
14
# File 'lib/active_shipping/shipping/response.rb', line 12

def response
  @response
end