KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > inversoft > verge > mvc > controller > actionflow > config > test > TestException


1 /*
2  * Copyright (c) 2003, Inversoft
3  *
4  * This software is distribuable under the GNU Lesser General Public License.
5  * For more information visit gnu.org.
6  */

7 package com.inversoft.verge.mvc.controller.actionflow.config.test;
8
9
10 import com.inversoft.util.BaseException;
11
12
13 /**
14  * This class
15  *
16  * @author Brian Pontarelli
17  * @since 2.0
18  * @version 2.0
19  */

20 public class TestException extends BaseException {
21
22     /**
23      * Constructs a new empty <code>TestException</code>
24      */

25     public TestException() {
26         super();
27     }
28
29     /**
30      * Constructs a new <code>TestException</code> with the given error
31      * message.
32      *
33      * @param message The error message for the exception
34      */

35     public TestException(String JavaDoc message) {
36         super(message);
37     }
38
39     /**
40      * Constructs a new <code>TestException</code> with the given error
41      * message and root cause
42      *
43      * @param message The error message for the exception
44      * @param cause The root cause throwable
45      */

46     public TestException(String JavaDoc message, Throwable JavaDoc cause) {
47         super(message, cause);
48     }
49
50     /**
51      * Constructs a new <code>TestException</code> with the given error
52      * root cause
53      *
54      * @param cause The root cause throwable
55      */

56     public TestException(Throwable JavaDoc cause) {
57         super(cause);
58     }
59 }
60
Popular Tags