beanactionexception.java
来自「很好的电子商务系统」· Java 代码 · 共 33 行
JAVA
33 行
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 + =
减小字号Ctrl + -
显示快捷键?