com.cleverpine.viravaspringhelper.error.exception.InvalidTokenAuthenticationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cp-virava-spring-helper Show documentation
Show all versions of cp-virava-spring-helper Show documentation
Library for Spring Framework projects using Virava
package com.cleverpine.viravaspringhelper.error.exception;
import org.springframework.security.core.AuthenticationException;
public class InvalidTokenAuthenticationException extends AuthenticationException {
public InvalidTokenAuthenticationException(String message) {
super(message);
}
public InvalidTokenAuthenticationException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy