Gemfire JavaDocs_test
Package org.apache.geode.management
Class ManagementException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.geode.GemFireException
-
- org.apache.geode.management.ManagementException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
AlreadyRunningException
public class ManagementException extends GemFireException
AManagementException
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 inManagementException
s.- Since:
- GemFire 7.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ManagementException()
Constructs a new exception with anull
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.
-
Method Summary
-
Methods inherited from class org.apache.geode.GemFireException
getRootCause
-
-
-
-
Constructor Detail
-
ManagementException
public ManagementException()
Constructs a new exception with anull
detail message. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(java.lang.Throwable)
.
-
ManagementException
public ManagementException(java.lang.String message)
Constructs a new exception with the specified detail message. The cause is not initialized and may subsequently be initialized by a call toThrowable.initCause(java.lang.Throwable)
.- Parameters:
message
- The detail message.
-
ManagementException
public ManagementException(java.lang.String message, java.lang.Throwable cause)
Constructs a new ManagementException with the specified detail message and cause.Note that the detail message associated with
cause
is not automatically incorporated in this runtime exception's detail message.- Parameters:
message
- The detail message.cause
- The cause of this exception ornull
if the cause is unknown.
-
ManagementException
public ManagementException(java.lang.Throwable cause)
Constructs a new ManagementException by wrapping the specified cause. The detail for this exception will be null if the cause is null or cause.toString() if a cause is provided.- Parameters:
cause
- The cause of this exception ornull
if the cause is unknown.
-
-