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

com.ingenico.direct.ReferenceException Maven / Gradle / Ivy

package com.ingenico.direct;

import java.util.List;

import com.ingenico.direct.domain.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