class Ingenico::Direct::SDK::CommunicationException

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.

@attr [Exception] cause The error that is the cause of this error.

Attributes

cause[RW]

Public Class Methods

new(cause) click to toggle source
Calls superclass method
# File lib/ingenico/direct/sdk/communication_exception.rb, line 9
def initialize(cause)
  super()
  @cause = cause
end