Gemfire JavaDocs
Package org.apache.geode.cache
Class RegionExistsException
- 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.RegionExistsException
-
- All Implemented Interfaces:
java.io.Serializable
public class RegionExistsException extends CacheException
Indicates that the requested region already exists when a region is being created.
-
-
Constructor Summary
Constructors Constructor Description RegionExistsException(Region rgn)
Constructs an instance ofRegionExistsException
with the specified Region.RegionExistsException(Region rgn, java.lang.Throwable cause)
Constructs an instance ofRegionExistsException
with the specified detail message and cause.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Region
getRegion()
Return the Region that already exists which prevented region creation.-
Methods inherited from class org.apache.geode.cache.CacheException
toString
-
Methods inherited from class org.apache.geode.GemFireException
getRootCause
-
-
-
-
Constructor Detail
-
RegionExistsException
public RegionExistsException(Region rgn)
Constructs an instance ofRegionExistsException
with the specified Region.- Parameters:
rgn
- the Region that exists
-
RegionExistsException
public RegionExistsException(Region rgn, java.lang.Throwable cause)
Constructs an instance ofRegionExistsException
with the specified detail message and cause.- Parameters:
rgn
- the Region that existscause
- the causal Throwable
-
-
Method Detail
-
getRegion
public Region getRegion()
Return the Region that already exists which prevented region creation.- Returns:
- the Region that already exists, or null if this exception has been serialized, in which
Throwable.getMessage()
will return the pathFromRoot for the region that exists.
-
-