Gemfire JavaDocs
Package org.apache.geode.cache
Class EntryNotFoundException
- 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.EntryNotFoundException
-
- All Implemented Interfaces:
java.io.Serializable
public class EntryNotFoundException extends CacheException
Thrown when an operation is invoked onRegion
for an entry that doesn't exist in theRegion
. This exception is not thrown byRegion.get(Object)
orRegion.getEntry(java.lang.Object)
.- Since:
- GemFire 3.0
- See Also:
Region.invalidate(Object)
,Region.destroy(Object)
,Region.Entry
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EntryNotFoundException(java.lang.String msg)
Constructs an instance ofEntryNotFoundException
with the specified detail message.EntryNotFoundException(java.lang.String msg, java.lang.Throwable cause)
Constructs an instance ofEntryNotFoundException
with the specified detail message and cause.
-
Method Summary
-
Methods inherited from class org.apache.geode.cache.CacheException
toString
-
Methods inherited from class org.apache.geode.GemFireException
getRootCause
-
-
-
-
Constructor Detail
-
EntryNotFoundException
public EntryNotFoundException(java.lang.String msg)
Constructs an instance ofEntryNotFoundException
with the specified detail message.- Parameters:
msg
- the detail message
-
EntryNotFoundException
public EntryNotFoundException(java.lang.String msg, java.lang.Throwable cause)
Constructs an instance ofEntryNotFoundException
with the specified detail message and cause.- Parameters:
msg
- the detail messagecause
- the causal Throwable
-
-