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(String message)
Constructs a new exception with the specified detail message.
|
ManagementException(String message,
Throwable cause)
Constructs a new ManagementException with the specified detail message and
cause.
|
ManagementException(Throwable cause)
Constructs a new ManagementException by wrapping the specified cause.
|
getRootCauseaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic 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(String message)
Throwable.initCause(java.lang.Throwable).message - The detail message.public ManagementException(String message, 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(Throwable cause)
cause - The cause of this exception or null if the cause is
unknown.Copyright © 1997-2017 Pivotal Software, Inc. All rights reserved.