

Public Member Functions | |
| RollbackException () | |
| RollbackException (String message) | |
| RollbackException (Throwable cause) | |
| RollbackException (String message, Throwable cause) | |
RollbackException is thrown by a scheduler when the transaction must be rollbacked (for example when a deadlock is detected).
Definition at line 35 of file RollbackException.java.
|
|
Creates a new Definition at line 40 of file RollbackException.java. 00041 {
00042 }
|
|
|
Creates a new
Definition at line 49 of file RollbackException.java. 00050 {
00051 super(message);
00052 }
|
|
|
Creates a new
Definition at line 59 of file RollbackException.java. 00060 {
00061 super(cause);
00062 }
|
|
||||||||||||
|
Creates a new
Definition at line 70 of file RollbackException.java. 00071 {
00072 super(message, cause);
00073 }
|
1.3.9.1