Spring Web Flow

org.springframework.binding.expression
Class PropertyNotFoundException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.springframework.binding.expression.EvaluationException
                  extended by org.springframework.binding.expression.PropertyNotFoundException
All Implemented Interfaces:
java.io.Serializable

public class PropertyNotFoundException
extends EvaluationException

An evaluation exception indicating a expression that references a property failed to evaluate because the property could not be found.

Author:
Keith Donald
See Also:
Serialized Form

Constructor Summary
PropertyNotFoundException(java.lang.Class<?> contextClass, java.lang.String property, java.lang.Throwable cause)
          Creates a new property not found exception
 
Method Summary
 
Methods inherited from class org.springframework.binding.expression.EvaluationException
getContextClass, getExpressionString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, 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

PropertyNotFoundException

public PropertyNotFoundException(java.lang.Class<?> contextClass,
                                 java.lang.String property,
                                 java.lang.Throwable cause)
Creates a new property not found exception

Parameters:
contextClass - the class of object upon which property evaluation was attempted
property - the property that could not be found
cause - root cause of the failure

Spring Web Flow