authenticationexception.java
来自「pojo的mvc框架」· Java 代码 · 共 45 行
JAVA
45 行
package xyz.frame.plugin.login;/** * User is not authenticated * * @author Guilherme Silveira */public class AuthenticationException extends Exception { /** * */ private static final long serialVersionUID = -7184365721820533711L; /** * */ protected AuthenticationException() { super(); } /** * @param message * @param cause */ protected AuthenticationException(String message, Throwable cause) { super(message, cause); } /** * @param message */ protected AuthenticationException(String message) { super(message); } /** * @param cause */ protected AuthenticationException(Throwable cause) { super(cause); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?