public class ManagementException extends GemFireException
ManagementException
is a general exception that may be thrown
when any administration or monitoring operation on a GemFire component
fails.
Various management and monitoring exceptions are wrapped in
ManagementExceptions.
Constructor and Description |
---|
ManagementException()
Constructs a new exception with a
null detail message. |
ManagementException(java.lang.String message)
Constructs a new exception with the specified detail message.
|
ManagementException(java.lang.String message,
java.lang.Throwable cause)
Constructs a new ManagementException with the specified detail message and
cause.
|
ManagementException(java.lang.Throwable cause)
Constructs a new ManagementException by wrapping the specified cause.
|
getRootCause
public ManagementException()
null
detail message. The
cause is not initialized, and may subsequently be initialized by a call to
Throwable.initCause(java.lang.Throwable)
.public ManagementException(java.lang.String message)
Throwable.initCause(java.lang.Throwable)
.message
- The detail message.public ManagementException(java.lang.String message, java.lang.Throwable cause)
Note that the detail message associated with cause
is
not automatically incorporated in this runtime exception's detail
message.
message
- The detail message.cause
- The cause of this exception or null
if the cause is
unknown.public ManagementException(java.lang.Throwable cause)
cause
- The cause of this exception or null
if the cause is
unknown.