VMware GemFire Java API Reference
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
public class EntryNotFoundException extends CacheException
Thrown when an operation is invoked onRegionfor 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(String msg)Constructs 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
toString
-
Methods inherited from class org.apache.geode.GemFireException
getRootCause
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Constructor Detail
-
EntryNotFoundException
public EntryNotFoundException(String msg)
Constructs an instance ofEntryNotFoundExceptionwith the specified detail message.- Parameters:
msg- the detail message
-
-