Class IgniteTxOptimisticCheckedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.ignite.IgniteCheckedException
-
- org.apache.ignite.internal.transactions.TransactionCheckedException
-
- org.apache.ignite.internal.transactions.IgniteTxOptimisticCheckedException
-
- All Implemented Interfaces:
Serializable
public class IgniteTxOptimisticCheckedException extends TransactionCheckedException
Exception thrown whenever grid transactions fail optimistically.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IgniteTxOptimisticCheckedException(String msg)Creates new optimistic exception with given error message.IgniteTxOptimisticCheckedException(String msg, Throwable cause)Creates new optimistic 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
-
IgniteTxOptimisticCheckedException
public IgniteTxOptimisticCheckedException(String msg)
Creates new optimistic exception with given error message.- Parameters:
msg- Error message.
-
-