Class InvalidPropertyValueException

  • All Implemented Interfaces:
    java.io.Serializable

    public class InvalidPropertyValueException
    extends ConfigurationException
    Exception that is thrown whenever a Property Value is invalid based on what is expected.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      InvalidPropertyValueException​(java.lang.String message)
      Creates a new instance of the InvalidPropertyValueException class.
      InvalidPropertyValueException​(java.lang.String fullPropertyName, java.lang.String actualValue)
      Creates a new instance of the InvalidPropertyValueException class.
      InvalidPropertyValueException​(java.lang.String fullPropertyName, java.lang.String actualValue, java.lang.Throwable cause)
      Creates a new instance of the InvalidPropertyValueException class.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • InvalidPropertyValueException

        public InvalidPropertyValueException​(java.lang.String message)
        Creates a new instance of the InvalidPropertyValueException class.
        Parameters:
        message - The message of the exception.
      • InvalidPropertyValueException

        public InvalidPropertyValueException​(java.lang.String fullPropertyName,
                                             java.lang.String actualValue)
        Creates a new instance of the InvalidPropertyValueException class.
        Parameters:
        fullPropertyName - The full name (component + property) of the property.
        actualValue - The actual value that was about to be processed.
      • InvalidPropertyValueException

        public InvalidPropertyValueException​(java.lang.String fullPropertyName,
                                             java.lang.String actualValue,
                                             java.lang.Throwable cause)
        Creates a new instance of the InvalidPropertyValueException class.
        Parameters:
        fullPropertyName - The full name (component + property) of the property.
        actualValue - The actual value that was about to be processed.
        cause - The causing Exception for this.