You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
878 B
36 lines
878 B
7 years ago
|
package com.fr.third.javax.transaction;
|
||
|
|
||
|
import java.rmi.RemoteException;
|
||
|
|
||
|
/**
|
||
|
* This exception indicates that the transaction context carried in the
|
||
|
* remote invocation has been rolled back, or was marked for roll back only.
|
||
|
*
|
||
|
* This indicates to the client that further computation on behalf of this
|
||
|
* transaction would be fruitless.
|
||
|
*
|
||
|
* @version $Revision$
|
||
|
*/
|
||
|
public class TransactionRolledbackException extends RemoteException
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* Creates a new <code>TransactionRolledbackException</code> without
|
||
|
* a detail message.
|
||
|
*/
|
||
|
public TransactionRolledbackException()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Constructs an <code>TransactionRolledbackException</code> with the
|
||
|
* specified detail message.
|
||
|
*
|
||
|
* @param msg the detail message.
|
||
|
*/
|
||
|
public TransactionRolledbackException(String msg)
|
||
|
{
|
||
|
super(msg);
|
||
|
}
|
||
|
}
|