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

📄 appexception.java

📁 一套完整的工商12315的源程序jsp部分在12315里,后台JAVA部分在gs12315src里,没有打包数据库.
💻 JAVA
字号:
/**
 * AppException.java       07/01/2002,
 * Author:
 *
 * Copyright (c) 2002 Censoft Corp.
 * Beijing China
 * All rights reserved.
 *
 * Modifier:
 * Time:
 ***/

package com.gs.util;

public class AppException
    extends GeneralException {

    /**
     * Default constructor. Takes no arguments
     */
    public AppException() {
        super();
    }

    /**
     * Constructor
     * @param str    a string that explains what the exception condition is
     */
    public AppException(String str) {
        super(str);
    }

    /**
     * Constructor
     * @param str    a string that explains what the exception condition is
     */
    public AppException(Exception ex) {
        super(ex);
        //asdfas
        //21312312312312312
    }

}

⌨️ 快捷键说明

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