?? serviceexception.java
字號:
package org.springside.examples.showcase.service;
/**
* Service層公用的Exception.
* 繼承自RuntimeException,會觸發Spring的事務管理引起事務回退.
*
* @author calvin
*/
public class ServiceException extends RuntimeException {
private static final long serialVersionUID = 1401593546385403720L;
public ServiceException() {
super();
}
public ServiceException(String message, Throwable cause) {
super(message, cause);
}
public ServiceException(String message) {
super(message);
}
public ServiceException(Throwable cause) {
super(cause);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -