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

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

List of all members.

Public Member Functions

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

Detailed Description

This class defines a NoTransactionStartWhenDisablingException. It is thrown when someone tries to start a new transaction on a backend that is disabling.

Author:
Emmanuel Cecchet
Version:
1.0

Definition at line 36 of file NoTransactionStartWhenDisablingException.java.


Constructor & Destructor Documentation

org.objectweb.cjdbc.common.exceptions.NoTransactionStartWhenDisablingException.NoTransactionStartWhenDisablingException  ) 
 

Creates a new NoTransactionStartWhenDisablingException object

Definition at line 43 of file NoTransactionStartWhenDisablingException.java.

00044   {
00045     super();
00046   }

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

Creates a new NoTransactionStartWhenDisablingException object

Parameters:
reason the error message

Definition at line 54 of file NoTransactionStartWhenDisablingException.java.

00055   {
00056     super(reason);
00057   }

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

Creates a new NoTransactionStartWhenDisablingException object

Parameters:
reason the error message
sqlState the SQL state

Definition at line 66 of file NoTransactionStartWhenDisablingException.java.

00067   {
00068     super(reason, sqlState);
00069   }

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

Creates a new NoTransactionStartWhenDisablingException object

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

Definition at line 79 of file NoTransactionStartWhenDisablingException.java.

00081   {
00082     super(reason, sqlState, vendorCode);
00083   }


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