package com.fr.third.javax.transaction; /** * This exception is thrown by the commit operation to report that a * heuristic decision was made and that all relevant updates have been * rolled back. * * @version $Revision$ */ public class HeuristicRollbackException extends Exception { /** * Creates a new HeuristicRollbackException without a * detail message. */ public HeuristicRollbackException() { } /** * Constructs an HeuristicRollbackException with the * specified detail message. * * @param msg the detail message. */ public HeuristicRollbackException(String msg) { super(msg); } }