An exception reporting an error that occurred during the evaluation of an expression in a {@link MethodBinding} or {@link ValueBinding}.
299300301302303304305306
{ msg = "Cannot set value for expression '" + _expressionString + "' to a new value of type " + newValue.getClass().getName(); } throw new EvaluationException(msg, e); } }
73747576777879808182
catch (PropertyNotFoundException e) { throw e; } catch (RuntimeException e) { throw new EvaluationException("Exception getting value of property " + property + " of bean " + base != null ? base.getClass().getName() : "NULL", e); } }
111112113114115116117118119120
throw new ReferenceSyntaxException("Must be array or List. Bean: " + base.getClass().getName() + ", index " + index); } catch (RuntimeException e) { throw new EvaluationException("Exception getting value for index " + index + " of bean " + base != null ? base.getClass().getName() : "NULL", e); } }
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); } }
6869707172737475
try { return expression.invoke(context.getELContext(), params); } catch (javax.el.MethodNotFoundException e) { throw new MethodNotFoundException(e); } catch (ELException e) { throw new EvaluationException(e); } }
4748495051525354
try { return expression.getType(context.getELContext()); } catch (javax.el.PropertyNotFoundException e) { throw new PropertyNotFoundException(e); } catch (ELException e) { throw new EvaluationException(e); } }