1. /*
  2. * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
  3. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  4. */
  5. package javax.ejb;
  6. /**
  7. *This exception indicates that a request carried a null transaction context,
  8. *but the target object requires an activate transaction.
  9. */
  10. public class TransactionRequiredLocalException extends EJBException {
  11. /**
  12. * Constructs a TransactionRequiredLocalException with no detail message.
  13. */
  14. public TransactionRequiredLocalException() {
  15. }
  16. /**
  17. * Constructs an TransactionRequiredLocalException with the specified
  18. * detailed message.
  19. */
  20. public TransactionRequiredLocalException(String message) {
  21. super(message);
  22. }
  23. }