📄 datanotfoundexception.java
字号:
/**
* <ol>
*
* @author 袁 军 <br>
* Time: 2006-10-30 17:00:26 <br>
* Company: 湖北工业大学计算机学院 <br>
* Email: yuan_junl@163.com
* @version 1.0
* </ol>
*/
public class DataNotFoundException extends Exception{
/**
* serialVersionUID
*/
private static final long serialVersionUID = 66185546444672300L;
/**
* Constructor
* @param string String
* @param e Exception
*/
public DataNotFoundException(String string, Exception e) {
super(string,e);
}
/**
* Constructor
* @param string
*/
public DataNotFoundException(String string) {
super(string);
}
/**
* Constructor
* @param string
*/
public DataNotFoundException(Exception e) {
super(e);
}
/**
* Constructor
*/
public DataNotFoundException() {
super();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -