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

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

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

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

Collaboration graph
[legend]
List of all members.

Public Member Functions

 RollbackException ()
 RollbackException (String message)
 RollbackException (Throwable cause)
 RollbackException (String message, Throwable cause)

Detailed Description

A RollbackException is thrown by a scheduler when the transaction must be rollbacked (for example when a deadlock is detected).

Author:
Emmanuel Cecchet
Version:
1.0

Definition at line 35 of file RollbackException.java.


Constructor & Destructor Documentation

org.objectweb.cjdbc.common.exceptions.RollbackException.RollbackException  ) 
 

Creates a new RollbackException instance.

Definition at line 40 of file RollbackException.java.

00041   {
00042   }

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

Creates a new RollbackException instance.

Parameters:
message the error message

Definition at line 49 of file RollbackException.java.

00050   {
00051     super(message);
00052   }

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

Creates a new RollbackException instance.

Parameters:
cause the root cause

Definition at line 59 of file RollbackException.java.

00060   {
00061     super(cause);
00062   }

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

Creates a new RollbackException instance.

Parameters:
message the error message
cause the root cause

Definition at line 70 of file RollbackException.java.

00071   {
00072     super(message, cause);
00073   }


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