Class: FreightKit::ResponseError

Inherits:
Error
  • Object
show all
Defined in:
lib/freight_kit/errors/response_error.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response = nil) ⇒ ResponseError

Returns a new instance of ResponseError.



7
8
9
10
11
12
13
14
# File 'lib/freight_kit/errors/response_error.rb', line 7

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.



5
6
7
# File 'lib/freight_kit/errors/response_error.rb', line 5

def response
  @response
end