📄 reptilesystemexception.java
字号:
/*
* FileName ReptileSystemException.java
* Create Time 2005-8-1 13:05:14
* Author shiwei
* Descript ReptileSystemException
* Version
*/
package com.snoics.reptile.system.exception;
import com.snoics.reptile.exception.*;
public class ReptileSystemException extends ReptileRuntimeException{
private static final long serialVersionUID = -5837221657743573473L;
public ReptileSystemException(){
super();
}
public ReptileSystemException(String exceptionmanager){
super(exceptionmanager);
}
public ReptileSystemException(Throwable cause) {
super(cause);
}
public ReptileSystemException(String exceptionmanager, Throwable cause) {
super(exceptionmanager, cause);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -