class Ingenico::Direct::SDK::NotFoundException

Raised when a resource is not found on the Ingenico ePayments platform. This error corresponds to a 404 HTTP response.

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

Attributes

cause[RW]

Public Class Methods

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