KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > ibatis > struts > BeanActionException


1 package com.ibatis.struts;
2
3 import com.ibatis.common.exception.NestedRuntimeException;
4
5 /**
6  * This exception is thrown internally by BeanAction and
7  * can also be used by bean action methods as a general
8  * or base exception.
9  * <p/>
10  * Date: Mar 13, 2004 8:17:00 PM
11  *
12  * @author Clinton Begin
13  */

14 public class BeanActionException extends NestedRuntimeException {
15
16   public BeanActionException() {
17     super();
18   }
19
20   public BeanActionException(String JavaDoc s) {
21     super(s);
22   }
23
24   public BeanActionException(Throwable JavaDoc throwable) {
25     super(throwable);
26   }
27
28   public BeanActionException(String JavaDoc s, Throwable JavaDoc throwable) {
29     super(s, throwable);
30   }
31
32 }
33
Popular Tags