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 transaction associated with processing
  8. * of the request has been rolled back, or marked to roll back. Thus the
  9. * requested operation either could not be performed or was not performed
  10. * because further computation on behalf of the transaction would be
  11. * fruitless
  12. */
  13. public class TransactionRolledbackException extends java.rmi.RemoteException
  14. {
  15. public TransactionRolledbackException()
  16. {
  17. super();
  18. }
  19. public TransactionRolledbackException(String msg)
  20. {
  21. super(msg);
  22. }
  23. }