All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.transaction.HeuristicRollbackException Maven / Gradle / Ivy

There is a newer version: 2.0.0.CR1
Show newest version
package 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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy