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:
Serializable
Thrown when an operation is invoked on
Region for an entry that doesn't exist in the
Region. This exception is not thrown by
Region.get(Object) or Region.getEntry(java.lang.Object).- Since:
- GemFire 3.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs an instance ofEntryNotFoundExceptionwith the specified detail message.EntryNotFoundException(String msg, Throwable cause) Constructs an instance ofEntryNotFoundExceptionwith the specified detail message and 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
-
EntryNotFoundException
Constructs an instance ofEntryNotFoundExceptionwith the specified detail message.- Parameters:
msg- the detail message
-
EntryNotFoundException
Constructs an instance ofEntryNotFoundExceptionwith the specified detail message and cause.- Parameters:
msg- the detail messagecause- the causal Throwable
-