Class IllegalConfigurationDescriptionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
de.aristaflow.adept2.base.configuration.IllegalConfigurationDescriptionException
- All Implemented Interfaces:
Serializable
An
IllegalConfigurationDescriptionException is thrown if there's an
inherent error in the ConfigurationDescription of a component. E.g.
if the default value doesn't match the specified type of a property or the
specified ConfigurationValidator is not instantiatable- Author:
- Patrick Schmidt
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newIllegalConfigurationDescriptionExceptionwithnull.Constructs a newIllegalConfigurationDescriptionExceptionwith the given detail message.IllegalConfigurationDescriptionException(String message, Throwable cause) Constructs a newIllegalConfigurationDescriptionExceptionwithnull.Constructs a newIllegalConfigurationDescriptionExceptionwithnullas detail message and the given 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
-
IllegalConfigurationDescriptionException
public IllegalConfigurationDescriptionException()Constructs a newIllegalConfigurationDescriptionExceptionwithnull. as detail message. -
IllegalConfigurationDescriptionException
Constructs a newIllegalConfigurationDescriptionExceptionwith the given detail message.- Parameters:
message- the detail message
-
IllegalConfigurationDescriptionException
Constructs a newIllegalConfigurationDescriptionExceptionwithnullas detail message and the given cause.- Parameters:
cause- the cause of this exception
-
IllegalConfigurationDescriptionException
Constructs a newIllegalConfigurationDescriptionExceptionwithnull. as detail message and the given cause.- Parameters:
message- the detail messagecause- the cause of this exception
-