
one.credify.sdk.exception.CredifyException Maven / Gradle / Ivy
package one.credify.sdk.exception;
public class CredifyException extends RuntimeException{
public CredifyException() {
}
public CredifyException(String message) {
super(message);
}
public CredifyException(String message, Throwable cause) {
super(message, cause);
}
public CredifyException(Throwable cause) {
super(cause);
}
public CredifyException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy