![JAR search and dependency download from the Maven repository](/logo.png)
be.looorent.security.jwt.UserDoesNotExistException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-security-jwt Show documentation
Show all versions of spring-security-jwt Show documentation
Create stateless security on your Spring endpoints using JWT.
package be.looorent.security.jwt;
import org.springframework.security.core.AuthenticationException;
/**
* @author Lorent Lempereur - [email protected]
*/
public class UserDoesNotExistException extends AuthenticationException {
private static final long serialVersionUID = 1L;
public UserDoesNotExistException(String message) {
super(message);
}
UserDoesNotExistException(String message, Throwable t) {
super(message, t);
}
UserDoesNotExistException(Exception e) {
super(e.getMessage(), e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy