All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ingenico.connect.gateway.sdk.java.ReferenceException Maven / Gradle / Ivy

Go to download

SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API

There is a newer version: 6.47.0
Show newest version
package com.ingenico.connect.gateway.sdk.java;

import java.util.List;

import com.ingenico.connect.gateway.sdk.java.domain.errors.definitions.APIError;

/**
 * Represents an error response from the Ingenico ePayments platform when a non-existing or removed object is trying to be accessed.
 */
@SuppressWarnings("serial")
public class ReferenceException extends ApiException {

	public ReferenceException(int statusCode, String responseBody, String errorId, List errors) {
		super("the Ingenico ePayments platform returned a reference error response", statusCode, responseBody, errorId, errors);
	}

	public ReferenceException(String message, int statusCode, String responseBody, String errorId, List errors) {
		super(message, statusCode, responseBody, errorId, errors);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy