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:
java.io.Serializable
public class InvalidConfigurationException
extends java.lang.RuntimeException
This exception should be thrown if an illegal configuration (parameter) is detected by a configurable component.
- Since:
- 1.13
- Author:
- Holger Knoche
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description InvalidConfigurationException(java.lang.String message)
Creates a new exception with the given message.InvalidConfigurationException(java.lang.String message, java.lang.Throwable cause)
Creates a new exception with the given message and cause. -
Method Summary
-
Constructor Details
-
InvalidConfigurationException
public InvalidConfigurationException(java.lang.String message)Creates a new exception with the given message.- Parameters:
message
- The message to associate with this exception
-
InvalidConfigurationException
public InvalidConfigurationException(java.lang.String message, java.lang.Throwable cause)Creates a new exception with the given message and cause.- Parameters:
message
- The message to associate with this exceptioncause
- The cause for this exception
-