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. * RollbackException exception is thrown when the transaction has been
  8. * marked for rollback only or the transaction has been rolled back
  9. * instead of committed. This is a local exception thrown by methods
  10. * in the <code>UserTransaction</code>, <code>Transaction</code>, and
  11. * <code>TransactionManager</code> interfaces.
  12. */
  13. public class RollbackException extends java.lang.Exception
  14. {
  15. public RollbackException()
  16. {
  17. super();
  18. }
  19. public RollbackException(String msg)
  20. {
  21. super(msg);
  22. }
  23. }