01: package com.ibatis.struts;
02:
03: import com.ibatis.common.exception.NestedRuntimeException;
04:
05: /**
06: * This exception is thrown internally by BeanAction and can also be used by
07: * bean action methods as a general or base exception. <p/>Date: Mar 13, 2004
08: * 8:17:00 PM
09: *
10: * @author Clinton Begin
11: */
12: public class BeanActionException extends NestedRuntimeException {
13:
14: public BeanActionException() {
15: super ();
16: }
17:
18: public BeanActionException(String s) {
19: super (s);
20: }
21:
22: public BeanActionException(Throwable throwable) {
23: super (throwable);
24: }
25:
26: public BeanActionException(String s, Throwable throwable) {
27: super(s, throwable);
28: }
29:
30: }
|