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

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

List of all members.

Public Member Functions

 NoMoreBackendException ()
 NoMoreBackendException (String reason)
 NoMoreBackendException (String reason, String sqlState)
 NoMoreBackendException (String reason, String sqlState, int vendorCode)

Detailed Description

This class defines a NoMoreBackendException. This means that a controller does not have any backend left to execute the query.

Author:
Nicolas Modrzyk
Version:
1.0

Definition at line 36 of file NoMoreBackendException.java.


Constructor & Destructor Documentation

org.objectweb.cjdbc.common.exceptions.NoMoreBackendException.NoMoreBackendException  ) 
 

Creates a new NoMoreBackendException object

Definition at line 42 of file NoMoreBackendException.java.

00043   {
00044     super();
00045   }

org.objectweb.cjdbc.common.exceptions.NoMoreBackendException.NoMoreBackendException String  reason  ) 
 

Creates a new NoMoreBackendException object

Parameters:
reason the error message

Definition at line 52 of file NoMoreBackendException.java.

00053   {
00054     super(reason);
00055   }

org.objectweb.cjdbc.common.exceptions.NoMoreBackendException.NoMoreBackendException String  reason,
String  sqlState
 

Creates a new NoMoreBackendException object

Parameters:
reason the error message
sqlState the SQL state

Definition at line 63 of file NoMoreBackendException.java.

00064   {
00065     super(reason, sqlState);
00066   }

org.objectweb.cjdbc.common.exceptions.NoMoreBackendException.NoMoreBackendException String  reason,
String  sqlState,
int  vendorCode
 

Creates a new NoMoreBackendException object

Parameters:
reason the error message
sqlState the SQL state
vendorCode vendor specific code

Definition at line 75 of file NoMoreBackendException.java.

00076   {
00077     super(reason, sqlState, vendorCode);
00078   }


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