webexception.java

来自「一套完整的工商12315的源程序jsp部分在12315里,后台JAVA部分在gs」· Java 代码 · 共 54 行

JAVA
54
字号
/**
 * WebException.java       07/01/2002,
 * Author:
 *
 * Copyright (c) 2002 Censoft Corp.
 * Beijing China
 * All rights reserved.
 *
 * Modifier:
 * Time:
 ***/
package com.gs.control.exceptions;

import com.gs.util.*;

/**
 * 定义了一个Web层的异常
 */
public class WebException
    extends GeneralException {

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

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

    /**
     * Default constructor. Takes no arguments
     */
    public WebException(Throwable thbl) {
        super();
    }

    /**
     * Default constructor. Takes no arguments
     */
    public WebException(Exception ex) {
        super(ex);
        //FetcWebException fweb = new FetcWebException();
        //fweb.fillInStackTrace();
    }

}

⌨️ 快捷键说明

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