Class MetricsHubSecurityException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.sentrysoftware.metricshub.engine.security.MetricsHubSecurityException
- All Implemented Interfaces:
Serializable
The MetricsHubSecurityException is an exception class specifically designed for security-related issues
within the MetricsHub engine.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionMetricsHubSecurityException(String message) Constructs a new MetricsHubSecurityException with the specified detail message.MetricsHubSecurityException(String message, Throwable cause) Constructs a new MetricsHubSecurityException with the specified detail message and cause.Constructs a new MetricsHubSecurityException with the specified 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
-
MetricsHubSecurityException
Constructs a new MetricsHubSecurityException with the specified detail message.- Parameters:
message- the detail message (which is saved for later retrieval by the getMessage() method)
-
MetricsHubSecurityException
Constructs a new MetricsHubSecurityException with the specified cause.- Parameters:
cause- the cause (which is saved for later retrieval by the getCause() method)
-
MetricsHubSecurityException
Constructs a new MetricsHubSecurityException with the specified detail message and cause.- Parameters:
message- the detail message (which is saved for later retrieval by the getMessage() method)cause- the cause (which is saved for later retrieval by the getCause() method)
-