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.



11
12
13
14
15
16
17
18
# File 'lib/active_shipping/shipping/response.rb', line 11

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.



9
10
11
# File 'lib/active_shipping/shipping/response.rb', line 9

def response
  @response
end