Package org.apache.geode.cache
Class CacheWriterException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.geode.GemFireException
org.apache.geode.cache.CacheRuntimeException
org.apache.geode.cache.OperationAbortedException
org.apache.geode.cache.CacheWriterException
- All Implemented Interfaces:
Serializable
An exception thrown by a
CacheWriter method. This exception is propagated back to
the caller that initiated modification of the cache, even if the caller is not in the same cache
VM.-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new instance ofCacheWriterException.Constructs an instance ofCacheWriterExceptionwith the specified detail message.CacheWriterException(String msg, Throwable cause) Constructs an instance ofCacheWriterExceptionwith the specified detail message and cause.CacheWriterException(Throwable cause) Constructs an instance ofCacheWriterExceptionwith the specified cause. -
Method Summary
Methods inherited from class org.apache.geode.cache.CacheRuntimeException
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
-
CacheWriterException
public CacheWriterException()Creates a new instance ofCacheWriterException. -
CacheWriterException
Constructs an instance ofCacheWriterExceptionwith the specified detail message.- Parameters:
msg- the detail message
-
CacheWriterException
Constructs an instance ofCacheWriterExceptionwith the specified detail message and cause.- Parameters:
msg- the detail messagecause- the causal Throwable
-
CacheWriterException
Constructs an instance ofCacheWriterExceptionwith the specified cause.- Parameters:
cause- the causal Throwable
-