javax.ejb.TransactionRolledbackLocalException 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.ejb;
/**
* This exception indicates that the transaction associated with processing
* of the request has been rolled back, or marked to roll back. Thus the
* requested operation either could not be performed or was not performed
* because further computation on behalf of the transaction would be fruitless.
*/
public class TransactionRolledbackLocalException extends EJBException {
/**
* Constructs a TransactionRolledbackLocalException with no detail message.
*/
public TransactionRolledbackLocalException() {
super();
}
/**
* Constructs a TransactionRolledbackLocalException with the specified detailed message.
*
* @param message - The detailed message.
*/
public TransactionRolledbackLocalException(String message) {
super(message);
}
/**
* Constructs a TransactionRolledbackLocalException with the specified detail
* message and a nested exception.
*
* @param message - The detailed message.
* @param ex - The originally thrown exception.
*/
public TransactionRolledbackLocalException(String message,Exception ex) {
super(message,ex);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy