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

javax.ejb.TransactionRequiredLocalException Maven / Gradle / Ivy

package javax.ejb;

/**
 * This exception indicates that a request carried a null transaction context,
 * but the target object requires an activate transaction.
 */
public class TransactionRequiredLocalException extends EJBException {

  /**
   * Constructs a TransactionRequiredLocalException with no detail message.
   */
  public TransactionRequiredLocalException() {
    super();
  }

  /**
   * Constructs a TransactionRequiredLocalException with the specified detailed message.
   *
   * @param message - The detailed message.
   */
  public TransactionRequiredLocalException(String message) {
    super(message);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy