An exception reporting an error that occurred during the evaluation of an expression in a {@link MethodBinding} or {@link ValueBinding}.
6263646566676869
try { return expression.getValue(context.getELContext()); } catch(javax.el.PropertyNotFoundException e) { throw new PropertyNotFoundException(e); } catch (ELException e) { throw new EvaluationException(e); } }
7778798081828384
try { return expression.isReadOnly(context.getELContext()); } catch(javax.el.PropertyNotFoundException e) { throw new PropertyNotFoundException(e); } catch (ELException e) { throw new EvaluationException(e); } }
93949596979899100101
try { expression.setValue(context.getELContext(), value); } catch(javax.el.PropertyNotFoundException e) { throw new PropertyNotFoundException(e); } catch (ELException e) { throw new EvaluationException(e); } }
103104105106107108109110111112113
UIComponent uiComponent = facesContext.getViewRoot().findComponent( _componentId); if (null != uiComponent && uiComponent instanceof AjaxSupport) { _component = (AjaxSupport) uiComponent; } else { throw new EvaluationException(Messages.getMessage( Messages.COMPONENT_NOT_FOUND, _componentId)); } }
139140141142143144145146147
* @see javax.faces.el.ValueBinding#setValue(javax.faces.context.FacesContext, * java.lang.Object) */ public void setValue(FacesContext facesContext, Object value) throws EvaluationException, PropertyNotFoundException { throw new EvaluationException(Messages .getMessage(Messages.EVENT_IS_READ_ONLY)); }
305306307308309310311312
{ msg = "Cannot set value for expression '" + _expressionString + "' to a new value of type " + newValue.getClass().getName(); } throw new EvaluationException(msg, e); } }
397398399400401402403404405406
throw new PropertyNotFoundException( "Expression: '" + _expressionString + "'", e); } catch (Exception e) { throw new EvaluationException( "Cannot get value for expression '" + _expressionString + "'", e); } }
365366367368369370371372373374375376377378379380381382383384385386387388389390
if (tmp.charAt(0) == '"') { index = tmp.indexOf('"', 1); if (index < 0) { throw new EvaluationException(tmp); } return tmp.substring(1, index); } if (tmp.charAt(0) == '\'') { index = tmp.indexOf('\'', 1); if (index < 0) { throw new EvaluationException(tmp); } return tmp.substring(1, index); } index = tmp.indexOf(']'); if (index < 0) { throw new EvaluationException(tmp); } return tmp.substring(1, index); }
5960616263646566
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); } }
7172737475767778
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); } }