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 the request carried an invalid transaction
  8. * context. For example, this exception could be raised if an error
  9. * occurred when trying to register a resource.
  10. */
  11. public class InvalidTransactionException extends java.rmi.RemoteException
  12. {
  13. public InvalidTransactionException()
  14. {
  15. super();
  16. }
  17. public InvalidTransactionException(String msg)
  18. {
  19. super(msg);
  20. }
  21. }