All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.transaction.TransactionRequiredException Maven / Gradle / Ivy

package javax.transaction;

import java.rmi.RemoteException;

/**
 *  This exception indicates that a remote invocation request carried a null
 *  transaction context, but that an active transaction context was needed.
 *
 *  @version $Revision$
 */
public class TransactionRequiredException extends RemoteException
{

    /**
     *  Creates a new TransactionRequiredException without a
     *  detail message.
     */
    public TransactionRequiredException()
    {
    }

    /**
     *  Constructs an TransactionRequiredException with the
     *  specified detail message.
     *
     *  @param msg the detail message.
     */
    public TransactionRequiredException(String msg)
    {
        super(msg);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy