📄 reportexception.java
字号:
package com.lucaslee.report;
import org.apache.commons.lang.exception.NestableRuntimeException;
/**
* 报表系统抛出的异常。
*
* @author Lucas lee
* @version 1.0
*/
public class ReportException extends NestableRuntimeException {
private static final long serialVersionUID = 1L;
public ReportException() {
super();
}
public ReportException(String msg) {
super(msg);
}
public ReportException(String msg, Throwable cause) {
super(msg, cause);
}
public ReportException(Throwable cause) {
super(cause);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -