class Ingenico::Connect::SDK::ReferenceException

This error is raised when the request refers to a resource or object that is not found by the Ingenico ePayments platform. The object referred to may not exist or it could have been removed recently.

Public Class Methods

new(status_code, response_body, error_id, errors, message='the Ingenico ePayments platform returned a reference error response') click to toggle source

Create a new ReferenceException. @see ApiException#initialize

# File lib/ingenico/connect/sdk/reference_exception.rb, line 9
def initialize(status_code, response_body, error_id, errors,
               message='the Ingenico ePayments platform returned a reference error response')
  super(status_code, response_body, error_id, errors, message)
end