?? reptileruntimeexception.java
字號:
/*
* FileName ReptileConfigException.java
* Create Time 2005-8-1 11:23:23
* Author shiwei
* Descript ReptileException
* Version
*/
package com.snoics.reptile.exception;
public class ReptileRuntimeException extends RuntimeException{
private static final long serialVersionUID = 6620094831164607182L;
public ReptileRuntimeException(){
super();
}
public ReptileRuntimeException(String exceptionmanager){
super(exceptionmanager);
}
public ReptileRuntimeException(Throwable cause) {
super(cause);
}
public ReptileRuntimeException(String exceptionmanager, Throwable cause) {
super(exceptionmanager, cause);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -