You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
713 B
32 lines
713 B
7 years ago
|
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 <code>HeuristicRollbackException</code> without a
|
||
|
* detail message.
|
||
|
*/
|
||
|
public HeuristicRollbackException()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Constructs an <code>HeuristicRollbackException</code> with the
|
||
|
* specified detail message.
|
||
|
*
|
||
|
* @param msg the detail message.
|
||
|
*/
|
||
|
public HeuristicRollbackException(String msg)
|
||
|
{
|
||
|
super(msg);
|
||
|
}
|
||
|
}
|