Exception: OrbipayPaymentsapiClient::ApiError
- Inherits:
-
StandardError
- Object
- StandardError
- OrbipayPaymentsapiClient::ApiError
- 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
-
#code ⇒ Object
readonly
Returns the value of attribute code.
-
#masked_authorization_string ⇒ Object
readonly
Returns the value of attribute masked_authorization_string.
-
#request_body ⇒ Object
readonly
Returns the value of attribute request_body.
-
#request_headers ⇒ Object
readonly
Returns the value of attribute request_headers.
-
#response_body ⇒ Object
readonly
Returns the value of attribute response_body.
-
#response_headers ⇒ Object
readonly
Returns the value of attribute response_headers.
-
#timed_out ⇒ Object
readonly
Returns the value of attribute timed_out.
Instance Method Summary collapse
-
#initialize(arg = nil) ⇒ ApiError
constructor
Usage examples: ApiError.new ApiError.new(“message”) ApiError.new(:code => 500, :response_headers => {}, :response_body => “”) ApiError.new(:code => 404, :message => “Not Found”).
Constructor Details
#initialize(arg = nil) ⇒ ApiError
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
#code ⇒ Object (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_string ⇒ Object (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 end |
#request_body ⇒ Object (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_headers ⇒ Object (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_body ⇒ Object (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_headers ⇒ Object (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_out ⇒ Object (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 |