📄 loginserviceexception.java
字号:
package com.cownew.PIS.framework.common.services;
import com.cownew.PIS.framework.common.exception.PISException;
import com.cownew.PIS.framework.common.exception.PISExceptionItemInfo;
public class LoginServiceException extends PISException
{
public final static PISExceptionItemInfo USERNAMEPASSWORDERROR = new PISExceptionItemInfo("用户名密码错误!");
public final static PISExceptionItemInfo USERNAMEFREEZEDERROR = new PISExceptionItemInfo("用户名已经被冻结!");
public LoginServiceException(PISExceptionItemInfo item, Throwable t)
{
super(item, t);
}
public LoginServiceException(PISExceptionItemInfo item)
{
super(item);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -