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 is thrown by the commit operation to report that a heuristic
  8. * decision was made and that all relevant updates have been rolled back.
  9. */
  10. public class HeuristicRollbackException extends java.lang.Exception
  11. {
  12. public HeuristicRollbackException()
  13. {
  14. super();
  15. }
  16. public HeuristicRollbackException(String msg)
  17. {
  18. super(msg);
  19. }
  20. }