simpleat-back/src/main/java/fr/cardon/simpleat/exception/InvalidCredentialsException.java
Your Name c8d9cd4db8 secu
2022-02-28 14:10:36 +01:00

15 lines
352 B
Java

package fr.cardon.simpleat.exception;
/**
* Specific exception that should be thrown when user credentials are not valid.
*/
public class InvalidCredentialsException extends Exception {
private static final long serialVersionUID = -6483691380297851921L;
@Override
public String getMessage()
{
return "L'accréditation est invalide !";
}
}