Package org.apache.ignite.transactions
Class TransactionHeuristicException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- java.lang.RuntimeException
- 
- org.apache.ignite.IgniteException
- 
- org.apache.ignite.transactions.TransactionException
- 
- org.apache.ignite.transactions.TransactionHeuristicException
 
 
 
 
 
 
- 
- All Implemented Interfaces:
- Serializable
 
 public class TransactionHeuristicException extends TransactionException Exception thrown whenever grid transaction enters an unknown state. This exception is usually thrown whenever commit partially succeeds. Cache will still resolve this situation automatically to ensure data integrity, by invalidating all values participating in this transaction on remote nodes.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description TransactionHeuristicException(String msg)Creates new heuristic exception with given error message.TransactionHeuristicException(String msg, Throwable cause)Creates new heuristic exception with given error message and optional nested exception.
 - 
Method Summary- 
Methods inherited from class org.apache.ignite.IgniteExceptiongetCause, hasCause, toString
 - 
Methods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
- 
 
- 
- 
- 
Constructor Detail- 
TransactionHeuristicExceptionpublic TransactionHeuristicException(String msg) Creates new heuristic exception with given error message.- Parameters:
- msg- Error message.
 
 
- 
 
-