KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > inversoft > beans > 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.beans.test;
8
9
10 /**
11  * A simple test exception used in testing
12  *
13  * @author Brian Pontarelli
14  */

15 public class TestException extends Exception JavaDoc {
16
17     public TestException() {
18         super();
19     }
20
21     public TestException(String JavaDoc msg) {
22         super(msg);
23     }
24 }
25
Popular Tags