17 lines
310 B
Java
17 lines
310 B
Java
package dev.peerat.framework.auth;
|
|
|
|
public class AuthException extends Exception{
|
|
|
|
public AuthException(String message){
|
|
super(message);
|
|
}
|
|
|
|
public AuthException(Throwable throwable){
|
|
super(throwable);
|
|
}
|
|
|
|
public AuthException(String message, Throwable throwable){
|
|
super(message, throwable);
|
|
}
|
|
|
|
}
|