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

📄 logexception.java

📁 日志组件,添加到应用中,可在数据库中查询日志
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -