Package org.apache.geode.management.cli
Class CommandServiceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.geode.management.cli.CommandServiceException
- All Implemented Interfaces:
Serializable
Indicates that an exception occurred while accessing/creating a Command Service for processing
GemFire Command Line Interface (CLI) commands.
- Since:
- GemFire 7.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCommandServiceException(String message) Constructs a newCommandServiceExceptionwith the specified detail message.CommandServiceException(String message, Throwable cause) Constructs a newCommandServiceExceptionwith the specified detail message and cause.CommandServiceException(Throwable cause) Constructs a newCommandServiceExceptionby wrapping the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CommandServiceException
Constructs a newCommandServiceExceptionwith the specified detail message and cause.- Parameters:
message- The detail message.cause- The cause of this exception ornullif the cause is unknown.
-
CommandServiceException
Constructs a newCommandServiceExceptionwith the specified detail message.- Parameters:
message- The detail message.
-
CommandServiceException
Constructs a newCommandServiceExceptionby 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 ornullif the cause is unknown.
-