logexception.java.svn-base

来自「日志组件,添加到应用中,可在数据库中查询日志」· SVN-BASE 代码 · 共 26 行

SVN-BASE
26
字号
package com.gisinfo.common.log;

/**
 * User: Ken
 * Date: 2008-5-20
 * Time: 16:32:10
 */
public class LogException extends Exception{

    public LogException() {
        super();    //To change body of overridden methods use File | Settings | File Templates.
    }

    public LogException(String message) {
        super(message);    //To change body of overridden methods use File | Settings | File Templates.
    }

    public LogException(String message, Throwable cause) {
        super(message, cause);    //To change body of overridden methods use File | Settings | File Templates.
    }

    public LogException(Throwable cause) {
        super(cause);    //To change body of overridden methods use File | Settings | File Templates.
    }
}

⌨️ 快捷键说明

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