Class PropertyNotRecognizedException

All Implemented Interfaces:
Serializable

public class PropertyNotRecognizedException extends DeltaXMLException

Thrown to indicate a problem setting a property on all pipelined comparators.

Properties provide an extensible mechanism for configuring the operation of the pipeline. Unlike features these methods accept or provide complex String, or more generally Object, values rather than booleans. They are used in different contexts:

The getPropertyName() method provides access to the name that was attempted to be set and which was not recognized. Please consult the appropriate method descriptions for full details of the supported properties.

Author:
Nigel Whitaker
See Also:
  • Constructor Details

    • PropertyNotRecognizedException

      public PropertyNotRecognizedException(String message, Throwable e, String propertyName)
      Creates a new PropertyNotRecognizedException.
      Parameters:
      message - The message string
      e - A nested throwable should it have lead to this exception
      propertyName - the name of the property being set or requested
    • PropertyNotRecognizedException

      public PropertyNotRecognizedException(String message, String propertyName)
      Creates a new PropertyNotRecognizedException.
      Parameters:
      message - The message string
      propertyName - the name of the property being set or requested
    • PropertyNotRecognizedException

      public PropertyNotRecognizedException(Throwable e, String propertyName)
      Creates a new PropertyNotRecognizedException.
      Parameters:
      e - A nested throwable should it have lead to this exception
      propertyName - the name of the property being set or requested
  • Method Details

    • getPropertyName

      public String getPropertyName()
      Reports the name of the property which was not recognized.
      Returns:
      the name of the property which was not recognized.