Gemfire JavaDocs
Package org.apache.geode.cache
Class EntryDestroyedException
- 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.EntryDestroyedException
-
- All Implemented Interfaces:
java.io.Serializable
public class EntryDestroyedException extends CacheRuntimeException
Indicates that a method was invoked on an entry that has been destroyed.- Since:
- GemFire 3.0
- See Also:
Region.Entry
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EntryDestroyedException()
Constructs a newEntryDestroyedException
.EntryDestroyedException(java.lang.String s)
Constructs a newEntryDestroyedException
with the message.EntryDestroyedException(java.lang.String s, java.lang.Throwable ex)
Constructs a newEntryDestroyedException
with a detailed message and a causal exception.EntryDestroyedException(java.lang.Throwable ex)
Construct aEntryDestroyedException
with a cause.
-
Method Summary
-
Methods inherited from class org.apache.geode.cache.CacheRuntimeException
toString
-
Methods inherited from class org.apache.geode.GemFireException
getRootCause
-
-
-
-
Constructor Detail
-
EntryDestroyedException
public EntryDestroyedException()
Constructs a newEntryDestroyedException
.
-
EntryDestroyedException
public EntryDestroyedException(java.lang.String s)
Constructs a newEntryDestroyedException
with the message.- Parameters:
s
- the detailed message for this exception
-
EntryDestroyedException
public EntryDestroyedException(java.lang.String s, java.lang.Throwable ex)
Constructs a newEntryDestroyedException
with a detailed message and a causal exception.- Parameters:
s
- the messageex
- a causal Throwable
-
EntryDestroyedException
public EntryDestroyedException(java.lang.Throwable ex)
Construct aEntryDestroyedException
with a cause.- Parameters:
ex
- the causal Throwable
-
-