KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > wsee > TestException


1 /*
2  * Created on 24.02.2004
3  *
4  * To change the template for this generated file go to
5  * Window>Preferences>Java>Code Generation>Code and Comments
6  */

7 package test.wsee;
8
9 /**
10  * @author Jung
11  * @wsee.jaxrpc-mapping local-part="TestException"
12  */

13
14 public class TestException extends Exception JavaDoc {
15
16    /**
17     * @wsee.constructor-element name="message"
18     * @wsee.constructor-element name="reason"
19     * @param message
20     * @param reason
21     */

22    public TestException(String JavaDoc message, String JavaDoc reason) {
23       super(message);
24    }
25 }
26
Popular Tags