Exception: VericredClient::ApiError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/vericred_client/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")


1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
# File 'lib/vericred_client/api_error.rb', line 1021

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.



1014
1015
1016
# File 'lib/vericred_client/api_error.rb', line 1014

def code
  @code
end

#response_bodyObject (readonly)

Returns the value of attribute response_body.



1014
1015
1016
# File 'lib/vericred_client/api_error.rb', line 1014

def response_body
  @response_body
end

#response_headersObject (readonly)

Returns the value of attribute response_headers.



1014
1015
1016
# File 'lib/vericred_client/api_error.rb', line 1014

def response_headers
  @response_headers
end