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 rollback operation on a resource to
  8. * report that a heuristic decision was made and that all relevant updates
  9. * have been committed.
  10. */
  11. public class HeuristicCommitException extends java.lang.Exception
  12. {
  13. public HeuristicCommitException()
  14. {
  15. super();
  16. }
  17. public HeuristicCommitException(String msg)
  18. {
  19. super(msg);
  20. }
  21. }