KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > resource > spi > ResourceAdapterInternalException


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 package javax.resource.spi;
25
26 /**
27  * A <code>ResourceAdapterInternalException</code> indicates any
28  * system-level error conditions related to a resource adapter.
29  * The common conditions indicated by this exception type are:
30  * <UL>
31  * <LI>Invalid configuration for creation of a new physical connection. An
32         example is invalid server name for a target EIS instance.
33  * <LI>Failure to create a physical connection to a EIS instance due to
34  * communication protocol error or any resource adapter implementation
35  * specific error.
36  * <LI>Error conditions internal to resource adapter implementation.
37  * </UL>
38  *
39  * @version 1.0
40  * @author Rahul Sharma
41  * @author Ram Jeyaraman
42  */

43
44 public class ResourceAdapterInternalException
45         extends javax.resource.ResourceException JavaDoc {
46
47     /**
48      * Constructs a new instance with null as its detail message.
49      */

50     public ResourceAdapterInternalException() { super(); }
51
52     /**
53      * Constructs a new instance with the specified detail message.
54      *
55      * @param message the detail message.
56      */

57     public ResourceAdapterInternalException(String JavaDoc message) {
58     super(message);
59     }
60
61     /**
62      * Constructs a new throwable with the specified cause.
63      *
64      * @param cause a chained exception of type <code>Throwable</code>.
65      */

66     public ResourceAdapterInternalException(Throwable JavaDoc cause) {
67     super(cause);
68     }
69
70     /**
71      * Constructs a new throwable with the specified detail message and cause.
72      *
73      * @param message the detail message.
74      *
75      * @param cause a chained exception of type <code>Throwable</code>.
76      */

77     public ResourceAdapterInternalException(String JavaDoc message, Throwable JavaDoc cause) {
78     super(message, cause);
79     }
80
81     /**
82      * Constructs a new throwable with the specified detail message and
83      * an error code.
84      *
85      * @param message a description of the exception.
86      * @param errorCode a string specifying the vendor specific error code.
87      */

88     public ResourceAdapterInternalException(String JavaDoc message, String JavaDoc errorCode) {
89     super(message, errorCode);
90     }
91 }
92
Popular Tags