io.hanko.sdk.exception.HankoApiConnectionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java SDK for accessing the Hanko Authentication API
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