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

📄 appbusinessexception.java

📁 《JSP网站开发典型模块与实例精讲》一书光盘源码
💻 JAVA
字号:
package org.appfuse.util.exception;


public class AppBusinessException extends AppException {
    public AppBusinessException(int errorCode) {
        super(errorCode);
    }

    public AppBusinessException(String message, int errorCode) {
        super(message, errorCode);
    }

    public AppBusinessException(Throwable cause, int errorCode) {
        super(cause, errorCode);
    }

    public AppBusinessException(String message, Throwable cause, int errorCode) {
        super(message, cause, errorCode);
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -