io.hanko.sdk.exception.HankoClientException 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 on errors during serialization of request payloads or deserialization
* of Hanko API response payloads or HMAC calculation.
*/
public class HankoClientException extends HankoException{
/**
* Construct a new HankoClientException with the specified detail message and
* cause.
* @param message the detail message
* @param cause the cause
*/
public HankoClientException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy