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

io.hanko.sdk.exception.HankoApiConnectionException Maven / Gradle / Ivy

The newest version!
package io.hanko.sdk.exception;

/**
 * Exception occurring when no proper connection to the Hanko API can be established.
 */
public class HankoApiConnectionException extends HankoException {
    /**
     * Construct a new HankoApiConnectionException with the specified detail message and
     * cause.
     * @param message the detail message
     * @param cause the cause
     */
    public HankoApiConnectionException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy