?? serviceexception.java
字號:
package cs636.techconf.service;
/**
* @author Saaid Baraty
*
* This exception is thrown from business logic layer
* to presentation layer. So the presentation layer
* gets more generic errors than the SQLExceptions
* thrown by the DAO layer.
*/
public class ServiceException extends Exception {
/**
* To satisfy Exception handling, avoid a warning, define a UID--
*/
private static final long serialVersionUID = 1L;
public ServiceException() {
super();
}
public ServiceException(String arg0) {
super(arg0);
}
public ServiceException(String reason, Throwable cause){
super(reason, cause);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -