Package kieker.common.exception
Class InvalidConfigurationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
kieker.common.exception.InvalidConfigurationException
- All Implemented Interfaces:
Serializable
This exception should be thrown if an illegal configuration (parameter) is detected by a configurable component.
- Since:
- 1.13
- Author:
- Holger Knoche
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInvalidConfigurationException(String message) Creates a new exception with the given message.InvalidConfigurationException(String message, Throwable cause) Creates a new exception with the given 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
-
InvalidConfigurationException
Creates a new exception with the given message.- Parameters:
message- The message to associate with this exception
-
InvalidConfigurationException
Creates a new exception with the given message and cause.- Parameters:
message- The message to associate with this exceptioncause- The cause for this exception
-