Class UnknownPropertyException

All Implemented Interfaces:
Serializable

public class UnknownPropertyException extends SysException
This exception is used to indicate a property was unknown or not supported.
Since:
5.0
Author:
O. Kerpershoek
See Also:
  • Constructor Details

    • UnknownPropertyException

      public UnknownPropertyException(String propertyName)
      Constructs the exception with the name of the property.
      Parameters:
      propertyName - The name of the property that was unknown.
    • UnknownPropertyException

      public UnknownPropertyException(String propertyName, Throwable cause)
      Constructs the exception with the name of the property.
      Parameters:
      propertyName - The name of the property that was unknown.
      cause - The actual cuase of the exception.
  • Method Details

    • getPropertyName

      public String getPropertyName()
      This method returns the name of the property that was unknown.
      Returns:
      The name of the property that was unknown.