📄 userexception.java
字号:
package com.cownew.phoneshow.basedata.user;
import com.cownew.phoneshow.framework.common.PISException;
import com.cownew.phoneshow.framework.common.PISExceptionItemInfo;
public class UserException extends PISException
{
public static final PISExceptionItemInfo USERNOTEXISTS = new PISExceptionItemInfo(
"用户名{0}不存在!");
public static final PISExceptionItemInfo USERIDEMPTY = new PISExceptionItemInfo(
"用户名不能为空!");
public static final PISExceptionItemInfo OLDPASSWORDERROR = new PISExceptionItemInfo(
"原密码错误!");
public static final PISExceptionItemInfo USERTEXISTS = new PISExceptionItemInfo(
"用户名{0}已经被占用!");
public UserException(PISExceptionItemInfo item, Throwable t)
{
super(item, t);
}
public UserException(PISExceptionItemInfo item)
{
super(item);
}
public UserException(PISExceptionItemInfo item, Throwable t, Object[] params)
{
super(item, t, params);
}
public UserException(PISExceptionItemInfo item, Object[] params)
{
super(item, params);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -