An exception reporting an error that occurred during the evaluation of an expression in a {@link MethodBinding} or {@link ValueBinding}.
150151152153154155156157158159
catch (PropertyNotFoundException e) { throw e; } catch (RuntimeException e) { throw new EvaluationException("Exception setting property " + property + " of bean " + base != null ? base.getClass().getName() : "NULL", e); } }
191192193194195196197198199200201202203204205206207208
{ throw new PropertyNotFoundException("Bean: " + base.getClass().getName() + ", index " + index, e); } throw new EvaluationException( "Bean must be array or List. Bean: " + base.getClass().getName() + ", index " + index); } catch (PropertyNotFoundException e) { throw e; } catch (RuntimeException e) { throw new EvaluationException("Exception setting value of index " + index + " of bean " + base != null ? base.getClass().getName() : "NULL", e); } }
332333334335336337338339340
throw new PropertyNotFoundException("Bean: " + base.getClass().getName() + ", index " + index, e); } catch (Exception e) { throw new EvaluationException("Exception getting type of index " + index + " of bean " + base != null ? base.getClass().getName() : "NULL", e); } }
367368369370371372373374375
{ m.invoke(base, new Object[] {newValue}); } catch (Throwable t) { throw new EvaluationException("Bean: " + base.getClass().getName() + ", property: " + name, t); } }
399400401402403404405406407
{ return m.invoke(base, NO_ARGS); } catch (Throwable t) { throw new EvaluationException("Bean: " + base.getClass().getName() + ", property: " + name, t); } }
5455565758596061
try { 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()); } }
7172737475767778
try { 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()); } }
4445464748495051
{ return facesContext.getApplication().getELResolver().getValue(facesContext.getELContext(), null, name); } catch (ELException e) { throw new EvaluationException(e); } }
try { return methodExpression.getMethodInfo(facesContext.getELContext()).getReturnType(); } catch (javax.el.MethodNotFoundException e) { throw new javax.faces.el.MethodNotFoundException(e); } catch (ELException e) { throw new EvaluationException(e); } }
6667686970717273
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); } }