com.eligible.exception.AuthenticationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eligible-java Show documentation
Show all versions of eligible-java Show documentation
Java bindings for Eligible APIs (https://eligible.com).
package com.eligible.exception;
/**
* Exception while authenticating.
*/
public class AuthenticationException extends EligibleException {
/**
* Create Authentication Exception.
* @param message the detail message.
*/
public AuthenticationException(String message) {
super(message);
}
/**
* Create Authentication Exception.
* @param message the detail message.
* @param e root cause.
*/
public AuthenticationException(String message, Throwable e) {
super(message, e);
}
private static final long serialVersionUID = 1L;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy