be.looorent.security.jwt.TokenException Maven / Gradle / Ivy
package be.looorent.security.jwt;
import org.springframework.security.core.AuthenticationException;
/**
* Custom implementation of the Exceptions throwed when an Authentication fails.
* @author Lorent Lempereur - [email protected]
*/
class TokenException extends AuthenticationException {
private static final long serialVersionUID = 1L;
TokenException(String message) {
super(message);
}
TokenException(String message, Throwable t) {
super(message, t);
}
TokenException(Exception e) {
super(e.getMessage(), e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy