KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > avalon > excalibur > datasource > NoAvailableConnectionException


1 /*
2  * Copyright (C) The Apache Software Foundation. All rights reserved.
3  *
4  * This software is published under the terms of the Apache Software License
5  * version 1.1, a copy of which has been included with this distribution in
6  * the LICENSE.txt file.
7  */

8 package org.apache.avalon.excalibur.datasource;
9
10 import java.sql.SQLException JavaDoc;
11
12
13 /**
14  * Exception that is thrown when there are no more Connection objects available
15  * in the pool.
16  *
17  * @author <a HREF="mailto:bloritsch@apache.org">Berin Loritsch</a>
18  * @version CVS $Revision: 1.3 $ $Date: 2001/12/11 09:53:28 $
19  * @since 4.1
20  */

21 public class NoAvailableConnectionException extends SQLException JavaDoc {
22
23     public NoAvailableConnectionException()
24     {
25        super();
26     }
27
28     public NoAvailableConnectionException( String JavaDoc message )
29     {
30        super( message );
31     }
32
33     public NoAvailableConnectionException( String JavaDoc message, String JavaDoc SQLState )
34     {
35        super( message, SQLState );
36     }
37
38     public NoAvailableConnectionException( String JavaDoc message, String JavaDoc SQLState, int vendorCode )
39     {
40        super( message, SQLState, vendorCode );
41     }
42 }
43
Popular Tags