Class ClientException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.sentrysoftware.metricshub.engine.common.exception.ClientException
- All Implemented Interfaces:
Serializable
This class is used to represent clients-related exceptions.
Clients include among others: IPMI, SNMP, SSH, WMI, WinRm, WBEM.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new ClientException.ClientException(Exception cause) Constructs a new ClientException with the specified cause.ClientException(String message) Constructs a new ClientException with the specified detail message.ClientException(String message, Exception cause) Constructs a new ClientException with the specified detail message and 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
-
ClientException
public ClientException()Constructs a new ClientException. -
ClientException
Constructs a new ClientException with the specified cause.- Parameters:
cause- The cause of the exception.
-
ClientException
Constructs a new ClientException with the specified detail message.- Parameters:
message- The detail message.
-
ClientException
Constructs a new ClientException with the specified detail message and cause.- Parameters:
message- The detail message.cause- The cause of the exception.
-