public class GemFireSecurityException extends GemFireException
Constructor and Description |
---|
GemFireSecurityException(String message)
Constructs a new exception with the specified detail message.
|
GemFireSecurityException(String message,
Throwable cause)
Constructs a new exception with the specified detail message and cause.
|
GemFireSecurityException(Throwable cause)
Constructs a new exception with the specified cause.
|
Modifier and Type | Method and Description |
---|---|
Throwable |
getCause() |
protected Object |
getResolvedObj()
|
protected boolean |
isSerializable(Object object)
Returns true if the provided
object implements Serializable . |
getRootCause
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public GemFireSecurityException(String message)
message
- the detail message (which is saved for later retrieval by the
Throwable.getMessage()
method). (A null value is permitted.)public GemFireSecurityException(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(String message, 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.)protected boolean isSerializable(Object object)
object
implements Serializable
.object
- the object
to test for implementing Serializable
.object
implements Serializable
.protected 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
.