Main Page | Packages | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | Related Pages

org.objectweb.cjdbc.common.exceptions.BadConnectionException Class Reference

Inheritance diagram for org.objectweb.cjdbc.common.exceptions.BadConnectionException:

Inheritance graph
[legend]
Collaboration diagram for org.objectweb.cjdbc.common.exceptions.BadConnectionException:

Collaboration graph
[legend]
List of all members.

Public Member Functions

 BadConnectionException (Throwable cause)
 BadConnectionException (String message, Throwable cause)

Detailed Description

A BadConnectionException is thrown when a connection fails the validity test.

See also:
org.objectweb.cjdbc.controller.backend.DatabaseBackend.isValidConnection(java.sql.Connection)
Author:
Emmanuel Cecchet
Version:
1.0

Definition at line 35 of file BadConnectionException.java.


Constructor & Destructor Documentation

org.objectweb.cjdbc.common.exceptions.BadConnectionException.BadConnectionException Throwable  cause  ) 
 

Creates a new BadConnectionException instance.

Parameters:
cause the root cause

Definition at line 44 of file BadConnectionException.java.

00045   {
00046     super(cause);
00047   }

org.objectweb.cjdbc.common.exceptions.BadConnectionException.BadConnectionException String  message,
Throwable  cause
 

Creates a new BadConnectionException instance.

Parameters:
message the error message
cause the root cause

Definition at line 55 of file BadConnectionException.java.

00056   {
00057     super(message, cause);
00058   }


The documentation for this class was generated from the following file:
Generated on Mon Apr 11 22:01:38 2005 for C-JDBC by  doxygen 1.3.9.1