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
726 B
31 lines
726 B
package com.fr.third.javax.transaction; |
|
|
|
/** |
|
* This exception is thrown to report that a heuristic decision was made and |
|
* that some some parts of the transaction have been committed while other |
|
* parts have been rolled back. |
|
* |
|
* @version $Revision$ |
|
*/ |
|
public class HeuristicMixedException extends Exception |
|
{ |
|
|
|
/** |
|
* Creates a new <code>HeuristicMixedException</code> without a |
|
* detail message. |
|
*/ |
|
public HeuristicMixedException() |
|
{ |
|
} |
|
|
|
/** |
|
* Constructs an <code>HeuristicMixedException</code> with the |
|
* specified detail message. |
|
* |
|
* @param msg the detail message. |
|
*/ |
|
public HeuristicMixedException(String msg) |
|
{ |
|
super(msg); |
|
} |
|
}
|
|
|