⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 exceptionconstants.java

📁 《JSP网站开发典型模块与实例精讲》一书光盘源码
💻 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 + -