Exception: OrderCloud::ApiError

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(arg = nil) ⇒ ApiError

Usage examples:

ApiError.new
ApiError.new("message")
ApiError.new(:code => 500, :response_headers => {}, :response_body => "")
ApiError.new(:code => 404, :message => "Not Found")


33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/order_cloud/api_error.rb', line 33

def initialize(arg = nil)
  if arg.is_a? Hash
    arg.each do |k, v|
      if k.to_s == 'message'
        super v
      else
        instance_variable_set "@#{k}", v
      end
    end
  else
    super arg
  end
end

Instance Attribute Details

#codeObject (readonly)

Returns the value of attribute code.



26
27
28
# File 'lib/order_cloud/api_error.rb', line 26

def code
  @code
end

#response_bodyObject (readonly)

Returns the value of attribute response_body.



26
27
28
# File 'lib/order_cloud/api_error.rb', line 26

def response_body
  @response_body
end

#response_headersObject (readonly)

Returns the value of attribute response_headers.



26
27
28
# File 'lib/order_cloud/api_error.rb', line 26

def response_headers
  @response_headers
end