io.castle.client.model.CastleRuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of castle-java Show documentation
Show all versions of castle-java Show documentation
Castle adds real-time monitoring of your authentication stack, instantly notifying you and your users
on potential account hijacks.
package io.castle.client.model;
/**
* Exception thrown if a review call fails or if the client is configured to use a THROW
* {@code AuthenticateFailoverStrategy} and if a call to the authenticate endpoint of the Castle API fails.
*/
public class CastleRuntimeException extends RuntimeException {
public CastleRuntimeException(Throwable throwable) {
super(throwable);
}
public CastleRuntimeException(String message) {
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy