
uk.ac.ceh.components.userstore.InvalidCredentialsException Maven / Gradle / Ivy
package uk.ac.ceh.components.userstore;
/**
* The following exception will be thrown if invalid credentials are specified
* when attempting to authenticate a user
* @author Christopher Johnson
*/
public class InvalidCredentialsException extends Exception {
public InvalidCredentialsException() {
super();
}
public InvalidCredentialsException(String mess) {
super(mess);
}
public InvalidCredentialsException(Throwable cause) {
super(cause);
}
public InvalidCredentialsException(String mess, Throwable cause) {
super(mess, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy