An exception reporting an error that occurred during the evaluation of an expression in a {@link MethodBinding} or {@link ValueBinding}.
167168169170171172173174
return m.getMethodInfo(context.getELContext()).getReturnType(); } catch (javax.el.MethodNotFoundException e) { throw new MethodNotFoundException(e.getMessage(), e.getCause()); } catch (ELException e) { throw new EvaluationException(e.getMessage(), e.getCause()); } }
187188189190191192193194
return m.invoke(context.getELContext(), params); } catch (javax.el.MethodNotFoundException e) { throw new MethodNotFoundException(e.getMessage(), e.getCause()); } catch (ELException e) { throw new EvaluationException(e.getMessage(), e.getCause()); } }
182183184185186187188189190191192
throw new PropertyNotFoundException("property not found: " + invoker.getMessage() + ": " + e.getMessage(), e); } catch (ELException e) { throw new EvaluationException("exception: " + invoker.getMessage() + ": " + e.getMessage(), e); } catch (RuntimeException e) { throw new RuntimeException("runtime exception: " + invoker.getMessage() + ": " + e.getMessage(), e); }
7475767778798081
throw new IllegalStateException("unknown scope defined: " + scope); } } catch (ELException e) { throw new EvaluationException(e.getMessage(), e); } }
46474849505152535455
public Object resolveVariable(FacesContext facesContext, String name) throws EvaluationException { try { return elResolver.getValue(facesContext.getELContext(), null, name); } catch (PropertyNotFoundException e) { throw new EvaluationException(e); } catch (ELException e) { throw new EvaluationException(e); } }
129130131132133134135136
{ throw new javax.faces.el.PropertyNotFoundException(e); } catch (ELException e) { throw new EvaluationException(e); } }
147148149150151152153154155
165166167168169170171172
182183184185186187188189
try { return methodExpression.invoke(facesContext.getELContext(), params); } catch (javax.el.MethodNotFoundException e) { throw new javax.faces.el.MethodNotFoundException(e); } catch (ELException e) { throw new EvaluationException(e.getCause()); } }