KickJava   Java API By Example, From Geeks To Geeks.

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


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>ResourceAllocationException</code> can be thrown by an
28  * application server or
29  * resource adapter to indicate any failure to allocate system resources
30  * (example: threads, physical connections). An example is error condition
31  * when an upper bound is reached on the maximum number of physical
32  * connections that can be managed by an application server specific
33  * connection pool.
34  *
35  * @version 1.0
36  * @author Rahul Sharma
37  * @author Ram Jeyaraman
38  */

39
40 public class ResourceAllocationException
41         extends javax.resource.ResourceException JavaDoc {
42
43     /**
44      * Constructs a new instance with null as its detail message.
45      */

46     public ResourceAllocationException() { super(); }
47
48     /**
49      * Constructs a new instance with the specified detail message.
50      *
51      * @param message the detail message.
52      */

53     public ResourceAllocationException(String JavaDoc message) {
54     super(message);
55     }
56
57     /**
58      * Constructs a new throwable with the specified cause.
59      *
60      * @param cause a chained exception of type <code>Throwable</code>.
61      */

62     public ResourceAllocationException(Throwable JavaDoc cause) {
63     super(cause);
64     }
65
66     /**
67      * Constructs a new throwable with the specified detail message and cause.
68      *
69      * @param message the detail message.
70      *
71      * @param cause a chained exception of type <code>Throwable</code>.
72      */

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

84     public ResourceAllocationException(String JavaDoc message, String JavaDoc errorCode) {
85     super(message, errorCode);
86     }
87 }
88
Popular Tags