Gemfire JavaDocs_test
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:
java.io.Serializable
public class CommandServiceException extends java.lang.Exception
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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CommandServiceException(java.lang.String message)
Constructs a newCommandServiceException
with the specified detail message.CommandServiceException(java.lang.String message, java.lang.Throwable cause)
Constructs a newCommandServiceException
with the specified detail message and cause.CommandServiceException(java.lang.Throwable cause)
Constructs a newCommandServiceException
by wrapping the specified cause.
-
-
-
Constructor Detail
-
CommandServiceException
public CommandServiceException(java.lang.String message, java.lang.Throwable cause)
Constructs a newCommandServiceException
with the specified detail message and cause.- Parameters:
message
- The detail message.cause
- The cause of this exception ornull
if the cause is unknown.
-
CommandServiceException
public CommandServiceException(java.lang.String message)
Constructs a newCommandServiceException
with the specified detail message.- Parameters:
message
- The detail message.
-
CommandServiceException
public CommandServiceException(java.lang.Throwable cause)
Constructs a newCommandServiceException
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.
-
-