Gemfire JavaDocs
Package org.apache.geode.cache
Class RoleException
- 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.RoleException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
RegionRoleException
@Deprecated public abstract class RoleException extends CacheRuntimeException
Deprecated.this feature is scheduled to be removedRoleException
is the superclass of those exceptions that can be thrown to indicate a reliability failure on one or moreregions
that have been configured with required roles usingMembershipAttributes
.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RoleException()
Deprecated.Creates a new instance ofRoleException
without detail message.RoleException(java.lang.String msg)
Deprecated.Constructs an instance ofRoleException
with the specified detail message.RoleException(java.lang.String msg, java.lang.Throwable cause)
Deprecated.Constructs an instance ofRoleException
with the specified detail message and cause.RoleException(java.lang.Throwable cause)
Deprecated.Constructs an instance ofRoleException
with the specified cause.
-
Method Summary
-
Methods inherited from class org.apache.geode.cache.CacheRuntimeException
toString
-
Methods inherited from class org.apache.geode.GemFireException
getRootCause
-
-
-
-
Constructor Detail
-
RoleException
public RoleException()
Deprecated.Creates a new instance ofRoleException
without detail message.
-
RoleException
public RoleException(java.lang.String msg)
Deprecated.Constructs an instance ofRoleException
with the specified detail message.- Parameters:
msg
- the detail message
-
RoleException
public RoleException(java.lang.String msg, java.lang.Throwable cause)
Deprecated.Constructs an instance ofRoleException
with the specified detail message and cause.- Parameters:
msg
- the detail messagecause
- the causal Throwable
-
RoleException
public RoleException(java.lang.Throwable cause)
Deprecated.Constructs an instance ofRoleException
with the specified cause.- Parameters:
cause
- the causal Throwable
-
-