jp.gopay.sdk.models.errors.SDKException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gopay-java-sdk Show documentation
Show all versions of gopay-java-sdk Show documentation
Official Gyro-n Payments Java SDK
package jp.gopay.sdk.models.errors;
/**
* Exceptions thrown by the GoPay SDK not related to responses from the API.
*/
public class SDKException extends Exception{
public SDKException() {
}
public SDKException(String message) {
super(message);
}
public SDKException(String message, Throwable cause) {
super(message, cause);
}
public SDKException(Throwable cause) {
super(cause);
}
public SDKException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}