Class IllegalConfigurationDescriptionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- de.aristaflow.adept2.base.configuration.IllegalConfigurationDescriptionException
-
- All Implemented Interfaces:
Serializable
public class IllegalConfigurationDescriptionException extends RuntimeException
AnIllegalConfigurationDescriptionException
is thrown if there's an inherent error in theConfigurationDescription
of a component. E.g. if the default value doesn't match the specified type of a property or the specifiedConfigurationValidator
is not instantiatable- Author:
- Patrick Schmidt
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IllegalConfigurationDescriptionException()
Constructs a newIllegalConfigurationDescriptionException
withnull
. as detail message.IllegalConfigurationDescriptionException(String message)
Constructs a newIllegalConfigurationDescriptionException
with the given detail message.IllegalConfigurationDescriptionException(String message, Throwable cause)
Constructs a newIllegalConfigurationDescriptionException
withnull
. as detail message and the given cause.IllegalConfigurationDescriptionException(Throwable cause)
Constructs a newIllegalConfigurationDescriptionException
withnull
as 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 Detail
-
IllegalConfigurationDescriptionException
public IllegalConfigurationDescriptionException()
Constructs a newIllegalConfigurationDescriptionException
withnull
. as detail message.
-
IllegalConfigurationDescriptionException
public IllegalConfigurationDescriptionException(String message)
Constructs a newIllegalConfigurationDescriptionException
with the given detail message.- Parameters:
message
- the detail message
-
IllegalConfigurationDescriptionException
public IllegalConfigurationDescriptionException(Throwable cause)
Constructs a newIllegalConfigurationDescriptionException
withnull
as detail message and the given cause.- Parameters:
cause
- the cause of this exception
-
IllegalConfigurationDescriptionException
public IllegalConfigurationDescriptionException(String message, Throwable cause)
Constructs a newIllegalConfigurationDescriptionException
withnull
. as detail message and the given cause.- Parameters:
message
- the detail messagecause
- the cause of this exception
-
-