com.ingenico.connect.gateway.sdk.java.ReferenceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connect-sdk-java Show documentation
Show all versions of connect-sdk-java Show documentation
SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API
The 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