📄 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 + -