java.lang.Object
java.lang.Throwable
java.lang.Exception
org.sentrysoftware.metricshub.engine.common.exception.ClientException
All Implemented Interfaces:
Serializable

public class ClientException extends Exception
This class is used to represent clients-related exceptions. Clients include among others: IPMI, SNMP, SSH, WMI, WinRm, WBEM.
See Also:
  • Constructor Details

    • ClientException

      public ClientException()
      Constructs a new ClientException.
    • ClientException

      public ClientException(Exception cause)
      Constructs a new ClientException with the specified cause.
      Parameters:
      cause - The cause of the exception.
    • ClientException

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

      public ClientException(String message, Exception cause)
      Constructs a new ClientException with the specified detail message and cause.
      Parameters:
      message - The detail message.
      cause - The cause of the exception.