javax.transaction.TransactionRequiredException Maven / Gradle / Ivy
Go to download
This artifact provides a single jar that contains all classes required to use remote Jakarta Enterprise Beans and Jakarta Messaging, including
all dependencies. It is intended for use by those not using maven, maven users should just import the Jakarta Enterprise Beans and
Jakarta Messaging BOM's instead (shaded JAR's cause lots of problems with maven, as it is very easy to inadvertently end up
with different versions on classes on the class path).
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 - 2025 Weber Informatics LLC | Privacy Policy