📄 exceptionconstants.java
字号:
package org.appfuse.util.exception;
public class ExceptionConstants {
/** Not an Exception */
public static final int SUCCESS = 0;
// System wide error section
/** General Application System Error: 1-100 */
public static final int SYS_GENERAL_ERR = 1;
// DB Error section: 1001 - 1999.
/** Common DB Error */
public static final int DB_COMMON_ERR = 1001;
/** Connection Error */
public static final int DB_CONN_ERR = 1002;
// Business Exception section: 2000 - 2999.
public static final int NAME_REQUIRED = 2001;
public static final int PASSWD_REQUIRED = 2003;
public static final int NAMEORPASSWDERROR = 2002;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -