Exception: Worldline::Connect::SDK::V1::DeclinedTransactionException

Inherits:
ApiException
  • Object
show all
Defined in:
lib/worldline/connect/sdk/v1/declined_transaction_exception.rb

Overview

Represents an error response from a create payment, payout or refund call.

Instance Attribute Summary

Attributes inherited from ApiException

#error_id, #errors, #response_body, #status_code

Instance Method Summary collapse

Methods inherited from ApiException

#to_s

Constructor Details

#initialize(status_code, response_body, error_id, errors, message = nil) ⇒ DeclinedTransactionException

Create a new DeclinedTransactionException.



16
17
18
19
20
21
22
# File 'lib/worldline/connect/sdk/v1/declined_transaction_exception.rb', line 16

def initialize(status_code, response_body, error_id, errors, message = nil)
  if message
    super(status_code, response_body, error_id, errors, message)
  else
    super(status_code, response_body, error_id, errors)
  end
end