Gemfire JavaDocs
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:
java.io.Serializable
public class CacheWriterException extends OperationAbortedException
An exception thrown by aCacheWriter
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.- Since:
- GemFire 3.0
- See Also:
CacheWriter
,Region.put(Object, Object)
,Region.destroy(Object)
,Region.create(Object, Object)
,Region.destroyRegion()
,Region.get(Object)
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CacheWriterException()
Creates a new instance ofCacheWriterException
.CacheWriterException(java.lang.String msg)
Constructs an instance ofCacheWriterException
with the specified detail message.CacheWriterException(java.lang.String msg, java.lang.Throwable cause)
Constructs an instance ofCacheWriterException
with the specified detail message and cause.CacheWriterException(java.lang.Throwable cause)
Constructs an instance ofCacheWriterException
with the specified cause.
-
Method Summary
-
Methods inherited from class org.apache.geode.cache.CacheRuntimeException
toString
-
Methods inherited from class org.apache.geode.GemFireException
getRootCause
-
-
-
-
Constructor Detail
-
CacheWriterException
public CacheWriterException()
Creates a new instance ofCacheWriterException
.
-
CacheWriterException
public CacheWriterException(java.lang.String msg)
Constructs an instance ofCacheWriterException
with the specified detail message.- Parameters:
msg
- the detail message
-
CacheWriterException
public CacheWriterException(java.lang.String msg, java.lang.Throwable cause)
Constructs an instance ofCacheWriterException
with the specified detail message and cause.- Parameters:
msg
- the detail messagecause
- the causal Throwable
-
CacheWriterException
public CacheWriterException(java.lang.Throwable cause)
Constructs an instance ofCacheWriterException
with the specified cause.- Parameters:
cause
- the causal Throwable
-
-