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

jp.gopay.sdk.models.errors.SDKException Maven / Gradle / Ivy

There is a newer version: 0.11.17
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy