📄 logexception.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 + -