Skip navigation links
org.apache.geode.management

Class ManagementException

    • Constructor Detail

      • ManagementException

        public ManagementException()
        Constructs a new exception with a null detail message. The cause is not initialized, and may subsequently be initialized by a call to Throwable.initCause(java.lang.Throwable).
      • ManagementException

        public ManagementException(String message)
        Constructs a new exception with the specified detail message. The cause is not initialized and may subsequently be initialized by a call to Throwable.initCause(java.lang.Throwable).
        Parameters:
        message - The detail message.
      • ManagementException

        public ManagementException(String message,
                                   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 or null if the cause is unknown.
      • ManagementException

        public ManagementException(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 or null if the cause is unknown.