VMware GemFire Java API Reference
Package org.apache.geode.cache
Class RegionReinitializedException
- 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
-
- org.apache.geode.cache.RegionReinitializedException
-
- All Implemented Interfaces:
Serializable
public class RegionReinitializedException extends RegionDestroyedException
Indicates that the region has been reinitialized. Further operations on the region object are not allowed using this region reference. A new reference must be acquired from the Cache the region's parent region.- Since:
- GemFire 4.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RegionReinitializedException(String msg, String regionFullPath)Constructs aRegionReinitializedExceptionwith a message.RegionReinitializedException(String s, String regionFullPath, Throwable ex)Constructs aRegionDestroyedExceptionwith a message and a cause.
-
Method Summary
-
Methods inherited from class org.apache.geode.cache.RegionDestroyedException
getRegionFullPath
-
Methods inherited from class org.apache.geode.cache.CacheRuntimeException
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
-
RegionReinitializedException
public RegionReinitializedException(String msg, String regionFullPath)
Constructs aRegionReinitializedExceptionwith a message.- Parameters:
msg- the String messageregionFullPath- the path of the region that encountered the exception
-
RegionReinitializedException
public RegionReinitializedException(String s, String regionFullPath, Throwable ex)
Constructs aRegionDestroyedExceptionwith a message and a cause.- Parameters:
s- the String messageregionFullPath- the path of the region that encountered the exceptionex- the Throwable cause
-
-