KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > jdo > api > persistence > enhancer > EnhancerFatalError


1 /*
2  * The contents of this file are subject to the terms
3  * of the Common Development and Distribution License
4  * (the License). You may not use this file except in
5  * compliance with the License.
6  *
7  * You can obtain a copy of the license at
8  * https://glassfish.dev.java.net/public/CDDLv1.0.html or
9  * glassfish/bootstrap/legal/CDDLv1.0.txt.
10  * See the License for the specific language governing
11  * permissions and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL
14  * Header Notice in each file and include the License file
15  * at glassfish/bootstrap/legal/CDDLv1.0.txt.
16  * If applicable, add the following below the CDDL Header,
17  * with the fields enclosed by brackets [] replaced by
18  * you own identifying information:
19  * "Portions Copyrighted [year] [name of copyright owner]"
20  *
21  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
22  */

23
24
25 package com.sun.jdo.api.persistence.enhancer;
26
27
28 /**
29  * Thrown to indicate that the class-file enhancer failed to perform an
30  * operation due to a serious error. The enhancer is not guaranteed to
31  * be in a consistent state anymore.
32  */

33 public class EnhancerFatalError
34     extends Exception JavaDoc
35 {
36     /**
37      * An optional nested exception.
38      */

39     public final Throwable JavaDoc nested;
40
41     /**
42      * Constructs an <code>EnhancerFatalError</code> with no detail message.
43      */

44     public EnhancerFatalError()
45     {
46         this.nested = null;
47     }
48
49     /**
50      * Constructs an <code>EnhancerFatalError</code> with the specified
51      * detail message.
52      */

53     public EnhancerFatalError(String JavaDoc msg)
54     {
55         super(msg);
56         this.nested = null;
57     }
58
59     /**
60      * Constructs an <code>EnhancerFatalError</code> with an optional
61      * nested exception.
62      */

63     public EnhancerFatalError(Throwable JavaDoc nested)
64     {
65         super(nested.toString());
66         this.nested = nested;
67     }
68
69     /**
70      * Constructs an <code>EnhancerFatalError</code> with the specified
71      * detail message and an optional nested exception.
72      */

73     public EnhancerFatalError(String JavaDoc msg, Throwable JavaDoc nested)
74     {
75         super(msg);
76         this.nested = nested;
77     }
78 }
79
Popular Tags