帆软使用的第三方框架。
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
928 B

package com.fr.third.javax.transaction;
import java.rmi.RemoteException;
/**
* This exception indicates an invalid transaction.
* <p>
* It is thrown from the {@link TransactionManager#resume(Transaction)}
* method if the argument is not a valid transaction.
* It may also be thrown from an EJB container invocation is the invocation
* request carries an invalid transaction propagation context.
*
* @version $Revision$
*/
public class InvalidTransactionException extends RemoteException
{
/**
* Creates a new <code>InvalidTransactionException</code> without a
* detail message.
*/
public InvalidTransactionException()
{
}
/**
* Constructs an <code>InvalidTransactionException</code> with the
* specified detail message.
*
* @param msg the detail message.
*/
public InvalidTransactionException(String msg)
{
super(msg);
}
}