All Downloads are FREE. Search and download functionalities are using the official Maven repository.

be.looorent.security.jwt.UserDoesNotExistException Maven / Gradle / Ivy

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