KickJava   Java API By Example, From Geeks To Geeks.

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


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  * Exception that is thrown when there is no valid Connection wrapper available
14  * in the ClassLoader.
15  *
16  * @author <a HREF="mailto:bloritsch@apache.org">Berin Loritsch</a>
17  * @version CVS $Revision: 1.3 $ $Date: 2001/12/11 09:53:28 $
18  * @since 4.1
19  */

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