Class PropertyNotFoundException

All Implemented Interfaces:
Serializable

@Deprecated
public class PropertyNotFoundException
extends EvaluationException
Deprecated.
This has been replaced by PropertyNotFoundException.

An exception caused by a property name that cannot be resolved against a base object.

See Also:
Serialized Form
  • Constructor Details

    • PropertyNotFoundException

      public PropertyNotFoundException()
      Deprecated.

      Construct a new exception with no detail message or root cause.

    • PropertyNotFoundException

      public PropertyNotFoundException​(String message)
      Deprecated.

      Construct a new exception with the specified detail message and no root cause.

      Parameters:
      message - The detail message for this exception
    • PropertyNotFoundException

      public PropertyNotFoundException​(Throwable cause)
      Deprecated.

      Construct a new exception with the specified root cause. The detail message will be set to (cause == null ? null : cause.toString()

      Parameters:
      cause - The root cause for this exception
    • PropertyNotFoundException

      public PropertyNotFoundException​(String message, Throwable cause)
      Deprecated.

      Construct a new exception with the specified detail message and root cause.

      Parameters:
      message - The detail message for this exception
      cause - The root cause for this exception