Package org.springframework.binding.expression

Examples of org.springframework.binding.expression.PropertyNotFoundException


  public Class<?> getValueType(Object context) {
    try {
      // OGNL has no native way to get this information
      return new BeanWrapperImpl(context).getPropertyType(expressionString);
    } catch (InvalidPropertyException e) {
      throw new PropertyNotFoundException(context.getClass(), getExpressionString(), e);
    } catch (BeansException e) {
      throw new EvaluationException(context.getClass(), getExpressionString(),
          "An BeansException occurred getting the value type for expression '" + getExpressionString()
              + "' on context [" + context.getClass() + "]", e);
    }
View Full Code Here

TOP

Related Classes of org.springframework.binding.expression.PropertyNotFoundException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.