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.
31 lines
713 B
31 lines
713 B
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); |
|
} |
|
}
|
|
|