📄 systemexception.java
字号:
package com.tb.log.system;
public class SystemException extends Exception{
/**
* 系统自定义错误
*/
private static final long serialVersionUID = 1L;
public SystemException() {
super();
}
public SystemException(Exception e) {
super(e.toString());
}
public SystemException(String s) {
super(s);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -