Exception: Ingenico::Direct::SDK::CommunicationException
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- Ingenico::Direct::SDK::CommunicationException
- Defined in:
- lib/ingenico/direct/sdk/communication_exception.rb
Overview
This exception is used when an error occurs during network communication with the Ingenico ePayments platform. A common cause is a timeout while connecting or when receiving or sending data.
Instance Attribute Summary collapse
-
#cause ⇒ Exception
The error that is the cause of this error.
Instance Method Summary collapse
-
#initialize(cause) ⇒ CommunicationException
constructor
A new instance of CommunicationException.
Constructor Details
#initialize(cause) ⇒ CommunicationException
Returns a new instance of CommunicationException.
9 10 11 12 |
# File 'lib/ingenico/direct/sdk/communication_exception.rb', line 9 def initialize(cause) super() @cause = cause end |
Instance Attribute Details
#cause ⇒ Exception
The error that is the cause of this error.
7 8 9 |
# File 'lib/ingenico/direct/sdk/communication_exception.rb', line 7 def cause @cause end |