Gemfire JavaDocs_test
Package org.apache.geode.cache
Class RegionDestroyedException
- 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.RegionDestroyedException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
RegionNotFoundException
,RegionReinitializedException
public class RegionDestroyedException extends CacheRuntimeException
Indicates that the region has been destroyed. Further operations on the region object are not allowed.- Since:
- GemFire 2.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RegionDestroyedException(java.lang.String msg, java.lang.String regionFullPath)
Constructs aRegionDestroyedException
with a message.RegionDestroyedException(java.lang.String s, java.lang.String regionFullPath, java.lang.Throwable ex)
Constructs aRegionDestroyedException
with a message and a cause.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getRegionFullPath()
-
Methods inherited from class org.apache.geode.cache.CacheRuntimeException
toString
-
Methods inherited from class org.apache.geode.GemFireException
getRootCause
-
-
-
-
Constructor Detail
-
RegionDestroyedException
public RegionDestroyedException(java.lang.String msg, java.lang.String regionFullPath)
Constructs aRegionDestroyedException
with a message.- Parameters:
msg
- the String messageregionFullPath
- the path of the region that encountered the exception
-
RegionDestroyedException
public RegionDestroyedException(java.lang.String s, java.lang.String regionFullPath, java.lang.Throwable ex)
Constructs aRegionDestroyedException
with a message and a cause.- Parameters:
s
- the String messageregionFullPath
- the path of the region that encountered the exceptionex
- the Throwable cause
-
-