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); } }