Exception: OrbipayPaymentsapiClient::ApiError

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

Overview

.

############################################################################################
## This class subject to change without prior notice, Please dont use this class directly.##
############################################################################################

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")


28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/orbipay_paymentsapi_client/api_error.rb', line 28

def initialize(arg = nil)
  if arg.is_a? Hash
    if arg.key?(:message) || arg.key?('message')
      super(arg[:message] || arg['message'])
    else
      super arg
    end

    arg.each do |k, v|
      instance_variable_set "@#{k}", v
    end
  else
    super arg
  end
end

Instance Attribute Details

#codeObject (readonly)

Returns the value of attribute code.



21
22
23
# File 'lib/orbipay_paymentsapi_client/api_error.rb', line 21

def code
  @code
end

#masked_authorization_stringObject (readonly)

Returns the value of attribute masked_authorization_string.



21
22
23
# File 'lib/orbipay_paymentsapi_client/api_error.rb', line 21

def masked_authorization_string
  @masked_authorization_string
end

#request_bodyObject (readonly)

Returns the value of attribute request_body.



21
22
23
# File 'lib/orbipay_paymentsapi_client/api_error.rb', line 21

def request_body
  @request_body
end

#request_headersObject (readonly)

Returns the value of attribute request_headers.



21
22
23
# File 'lib/orbipay_paymentsapi_client/api_error.rb', line 21

def request_headers
  @request_headers
end

#response_bodyObject (readonly)

Returns the value of attribute response_body.



21
22
23
# File 'lib/orbipay_paymentsapi_client/api_error.rb', line 21

def response_body
  @response_body
end

#response_headersObject (readonly)

Returns the value of attribute response_headers.



21
22
23
# File 'lib/orbipay_paymentsapi_client/api_error.rb', line 21

def response_headers
  @response_headers
end

#timed_outObject (readonly)

Returns the value of attribute timed_out.



21
22
23
# File 'lib/orbipay_paymentsapi_client/api_error.rb', line 21

def timed_out
  @timed_out
end