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
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 Details

    • IllegalConfigurationDescriptionException

      public IllegalConfigurationDescriptionException()
      Constructs a new IllegalConfigurationDescriptionException with null. as detail message.
    • IllegalConfigurationDescriptionException

      public IllegalConfigurationDescriptionException(String message)
      Constructs a new IllegalConfigurationDescriptionException with the given detail message.
      Parameters:
      message - the detail message
    • IllegalConfigurationDescriptionException

      public IllegalConfigurationDescriptionException(Throwable cause)
      Constructs a new IllegalConfigurationDescriptionException with null as detail message and the given cause.
      Parameters:
      cause - the cause of this exception
    • IllegalConfigurationDescriptionException

      public IllegalConfigurationDescriptionException(String message, Throwable cause)
      Constructs a new IllegalConfigurationDescriptionException with null. as detail message and the given cause.
      Parameters:
      message - the detail message
      cause - the cause of this exception