Package org.apache.geode.cache
Class CommitConflictException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.geode.GemFireException
org.apache.geode.cache.CacheException
org.apache.geode.cache.TransactionException
org.apache.geode.cache.CommitConflictException
- All Implemented Interfaces:
Serializable
Thrown when a commit fails due to a write conflict.
- Since:
- GemFire 4.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs an instance ofCommitConflictExceptionwith the specified detail message.CommitConflictException(String msg, Throwable cause) Constructs an instance ofCommitConflictExceptionwith the specified detail message and cause.CommitConflictException(Throwable cause) Constructs an instance ofCommitConflictExceptionwith the specified cause. -
Method Summary
Methods inherited from class org.apache.geode.cache.CacheException
toStringMethods inherited from class org.apache.geode.GemFireException
getRootCauseMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
CommitConflictException
Constructs an instance ofCommitConflictExceptionwith the specified detail message.- Parameters:
msg- the detail message
-
CommitConflictException
Constructs an instance ofCommitConflictExceptionwith the specified detail message and cause.- Parameters:
msg- the detail messagecause- the causal Throwable
-
CommitConflictException
Constructs an instance ofCommitConflictExceptionwith the specified cause.- Parameters:
cause- the causal Throwable- Since:
- GemFire 6.5
-