public class GemFireSecurityException extends GemFireException
Constructor and Description |
---|
GemFireSecurityException(java.lang.String message)
Constructs a new exception with the specified detail message.
|
GemFireSecurityException(java.lang.String message,
java.lang.Throwable cause)
Constructs a new exception with the specified detail message and cause.
|
GemFireSecurityException(java.lang.Throwable cause)
Constructs a new exception with the specified cause.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Throwable |
getCause() |
protected java.lang.Object |
getResolvedObj()
Returns
NamingException.getResolvedObj() if the cause
is a NamingException . |
protected boolean |
isSerializable(java.lang.Object object)
Returns true if the provided
object implements Serializable . |
getRootCause
public GemFireSecurityException(java.lang.String message)
message
- the detail message (which is saved for later retrieval
by the Throwable.getMessage()
method). (A null value
is permitted.)public GemFireSecurityException(java.lang.Throwable cause)
Note that the detail message associated with cause
is
automatically used as this exception's detail message.
cause
- the cause (which is saved for later retrieval by the
getCause()
method). (A null value is
permitted, and indicates that the cause is nonexistent or
unknown.)public GemFireSecurityException(java.lang.String message, java.lang.Throwable cause)
If message
is null, then the detail message associated with
cause
is automatically used as this exception's detail
message.
message
- the detail message (which is saved for later retrieval
by the Throwable.getMessage()
method). (A null value
is permitted.)cause
- the cause (which is saved for later retrieval by the
getCause()
method). (A null value is
permitted, and indicates that the cause is nonexistent or
unknown.)public final java.lang.Throwable getCause()
getCause
in class java.lang.Throwable
protected final boolean isSerializable(java.lang.Object object)
object
implements Serializable
.object
- the object
to test for implementing Serializable
.object
implements Serializable
.protected final java.lang.Object getResolvedObj()
NamingException.getResolvedObj()
if the cause
is a NamingException
. Returns null for any other type
of cause
.NamingException#getResolvedObj()
if the cause
is a NamingException
.