1. /*
  2. * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
  3. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  4. */
  5. package javax.transaction;
  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 TransactionRequiredException extends java.rmi.RemoteException
  11. {
  12. public TransactionRequiredException()
  13. {
  14. super();
  15. }
  16. public TransactionRequiredException(String msg)
  17. {
  18. super(msg);
  19. }
  20. }