Class IgniteTxHeuristicCheckedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.ignite.IgniteCheckedException
-
- org.apache.ignite.internal.transactions.TransactionCheckedException
-
- org.apache.ignite.internal.transactions.IgniteTxHeuristicCheckedException
-
- All Implemented Interfaces:
Serializable
public class IgniteTxHeuristicCheckedException extends TransactionCheckedException
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 Summary
Constructors Constructor Description IgniteTxHeuristicCheckedException(String msg)Creates new heuristic exception with given error message.IgniteTxHeuristicCheckedException(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.IgniteCheckedException
getCause, hasCause, toString
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Constructor Detail
-
IgniteTxHeuristicCheckedException
public IgniteTxHeuristicCheckedException(String msg)
Creates new heuristic exception with given error message.- Parameters:
msg- Error message.
-
-