KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > openedit > OpenEditRuntimeException


1 /*
2 Copyright (c) 2003 eInnovation Inc. All rights reserved
3
4 This library is free software; you can redistribute it and/or modify it under the terms
5 of the GNU Lesser General Public License as published by the Free Software Foundation;
6 either version 2.1 of the License, or (at your option) any later version.
7
8 This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
9 without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10 See the GNU Lesser General Public License for more details.
11 */

12
13 package com.openedit;
14
15
16
17 /**
18  * DOCUMENT ME!
19  *
20  * @author cburkey To change this generated comment edit the template variable "typecomment":
21  * Window>Preferences>Java>Templates. To enable and disable the creation of type comments
22  * go to Window>Preferences>Java>Code Generation.
23  */

24 public class OpenEditRuntimeException extends RuntimeException JavaDoc
25 {
26
27     private static final long serialVersionUID = -2930548912472035638L;
28
29     /**
30      * Constructor for OpenEditRuntimeException.
31      */

32     public OpenEditRuntimeException()
33     {
34         super();
35     }
36
37     /**
38      * Constructor for OpenEditRuntimeException.
39      *
40      * @param message
41      */

42     public OpenEditRuntimeException(String JavaDoc message)
43     {
44         super(message);
45     }
46
47     /**
48      * Constructor for OpenEditRuntimeException.
49      *
50      * @param message
51      * @param t
52      */

53     public OpenEditRuntimeException(String JavaDoc message, Throwable JavaDoc t)
54     {
55         super(message, t);
56     }
57
58     /**
59      * Constructor for OpenEditRuntimeException.
60      *
61      * @param t
62      */

63     public OpenEditRuntimeException(Throwable JavaDoc t)
64     {
65         super(t);
66     }
67 }
68
Popular Tags