An exception reporting an error that occurred during the evaluation of an expression in a {@link MethodBinding} or {@link ValueBinding}.
456457458459460461462463
{ return m.invoke(base, NO_ARGS); } catch (Throwable t) { throw new EvaluationException(getMessage(base, name), t); } }
4445464748495051
{ return facesContext.getApplication().getELResolver().getValue(facesContext.getELContext(), null, name); } catch (ELException e) { throw new EvaluationException(e); } }
203204205206207208209210211212213
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); }
7576777879808182
throw new IllegalStateException("unknown scope defined: " + scope); } } catch (ELException e) { throw new EvaluationException(e.getMessage(), e); } }
170171172173174175176177
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()); } }
190191192193194195196197
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()); } }
8283848586878889
return _ve.getValue(facesContext.getELContext()); } // Convert EL exceptions into EvaluationExceptions catch (ELException ee) { throw new EvaluationException(ee.getMessage(), ee.getCause()); } }
96979899100101102103
_ve.setValue(facesContext.getELContext(), object); } // Convert EL exceptions into EvaluationExceptions catch (ELException ee) { throw new EvaluationException(ee.getMessage(), ee.getCause()); } }
110111112113114115116117
return _ve.isReadOnly(facesContext.getELContext()); } // Convert EL exceptions into EvaluationExceptions catch (ELException ee) { throw new EvaluationException(ee.getMessage(), ee.getCause()); } }
124125126127128129130131
return _ve.getType(facesContext.getELContext()); } // Convert EL exceptions into EvaluationExceptions catch (ELException ee) { throw new EvaluationException(ee.getMessage(), ee.getCause()); } }