Class CommandServiceException

  • All Implemented Interfaces:
    Serializable

    public class CommandServiceException
    extends 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 Detail

      • CommandServiceException

        public CommandServiceException​(String message,
                                       Throwable cause)
        Constructs a new CommandServiceException with the specified detail message and cause.
        Parameters:
        message - The detail message.
        cause - The cause of this exception or null if the cause is unknown.
      • CommandServiceException

        public CommandServiceException​(String message)
        Constructs a new CommandServiceException with the specified detail message.
        Parameters:
        message - The detail message.
      • CommandServiceException

        public CommandServiceException​(Throwable cause)
        Constructs a new CommandServiceException 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 or null if the cause is unknown.