io.hanko.sdk.exception.HankoException 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;
/**
* Base Exception for all Hanko exceptions.
*/
public abstract class HankoException extends RuntimeException {
/**
* Construct a new HankoException with the specified detail message.
* @param message the detail message
*/
protected HankoException(final String message) {
this(message, null);
}
/**
* Construct a new HankoException with the specified detail message and
* cause.
* @param message the detail message
* @param cause the cause
*/
protected HankoException(final String message, final Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy