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

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

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

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

Collaboration graph
[legend]
List of all members.

Public Member Functions

 UnreachableBackendException ()
 UnreachableBackendException (String message)
 UnreachableBackendException (Throwable cause)
 UnreachableBackendException (String message, Throwable cause)

Detailed Description

A UnreachableBackendException is thrown when it is no more possible to get a connection to a backend.

See also:
org.objectweb.cjdbc.controller.connection.AbstractConnectionManager.getConnection()
Author:
Emmanuel Cecchet
Version:
1.0

Definition at line 37 of file UnreachableBackendException.java.


Constructor & Destructor Documentation

org.objectweb.cjdbc.common.exceptions.UnreachableBackendException.UnreachableBackendException  ) 
 

Creates a new UnreachableBackendException instance.

Definition at line 42 of file UnreachableBackendException.java.

00043   {
00044   }

org.objectweb.cjdbc.common.exceptions.UnreachableBackendException.UnreachableBackendException String  message  ) 
 

Creates a new UnreachableBackendException instance.

Parameters:
message the error message

Definition at line 51 of file UnreachableBackendException.java.

00052   {
00053     super(message);
00054   }

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

Creates a new UnreachableBackendException instance.

Parameters:
cause the root cause

Definition at line 61 of file UnreachableBackendException.java.

00062   {
00063     super(cause);
00064   }

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

Creates a new UnreachableBackendException instance.

Parameters:
message the error message
cause the root cause

Definition at line 72 of file UnreachableBackendException.java.

00073   {
00074     super(message, cause);
00075   }


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