?? beanactionexception.java
字號:
package com.ibatis.struts;
import com.ibatis.common.exception.NestedRuntimeException;
/**
* This exception is thrown internally by BeanAction and
* can also be used by bean action methods as a general
* or base exception.
* <p/>
* Date: Mar 13, 2004 8:17:00 PM
*
* @author Clinton Begin
*/
public class BeanActionException extends NestedRuntimeException {
public BeanActionException() {
super();
}
public BeanActionException(String s) {
super(s);
}
public BeanActionException(Throwable throwable) {
super(throwable);
}
public BeanActionException(String s, Throwable throwable) {
super(s, throwable);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -