An exception reporting an error that occurred during the evaluation of an expression in a {@link MethodBinding} or {@link ValueBinding}.
93949596979899100
try { return this.delegate.getType(ctx); } catch (javax.el.PropertyNotFoundException e) { throw new PropertyNotFoundException(e.getMessage(), e.getCause()); } catch (ELException e) { throw new EvaluationException(e.getMessage(), e.getCause()); } }
5152535455565758
try { return m.getMethodInfo(ELAdaptor.getELContext(context)).getReturnType(); } catch (javax.el.MethodNotFoundException e) { throw new MethodNotFoundException(e.getMessage(), e.getCause()); } catch (ELException e) { throw new EvaluationException(e.getMessage(), e.getCause()); } }
6869707172737475
try { return m.invoke(ELAdaptor.getELContext(context), params); } catch (javax.el.MethodNotFoundException e) { throw new MethodNotFoundException(e.getMessage(), e.getCause()); } catch (ELException e) { throw new EvaluationException(e.getMessage(), e.getCause()); } }
308309310311312313314315
{ msg = "Cannot set value for expression '" + _expressionString + "' to a new value of type " + newValue.getClass().getName(); } throw new EvaluationException(msg, e); } }
400401402403404405406407408409
throw new PropertyNotFoundException( "Expression: '" + _expressionString + "'", e); } catch (Exception e) { throw new EvaluationException( "Cannot get value for expression '" + _expressionString + "'", e); } }
949596979899100101102103
catch (RuntimeException e) { if(log.isDebugEnabled()) log.debug("Exception while retrieving property; base : "+base.getClass().getName()+", property : "+property,e); throw new EvaluationException("Exception getting value of property " + property + " of base of type : " + base.getClass().getName(), e); } }
139140141142143144145146147148
catch (RuntimeException e) { if(log.isDebugEnabled()) log.debug("Exception while getting property; base with class: "+base.getClass().getName()+", index : "+index,e); throw new EvaluationException("Exception getting value for index " + index + " of bean " + base != null ? base.getClass().getName() : "NULL", e); } }
183184185186187188189190191192
catch (RuntimeException e) { if(log.isDebugEnabled()) log.debug("Exception while setting property; base : "+base.getClass().getName()+", property : "+property,e); throw new EvaluationException("Exception setting property " + property + " of base with class " + base.getClass().getName(), e); } }
224225226227228229230231232233234235236237238239240241
{ throw new PropertyNotFoundException("Base with class : " + base.getClass().getName() + ", index " + index, e); } throw new EvaluationException( "Bean must be array or List. Base with class: " + 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.getClass().getName(), e); } }
373374375376377378379380381
throw new PropertyNotFoundException("Bean: " + base.getClass().getName() + ", index " + index, e); } catch (Exception e) { throw new EvaluationException("Exception getting type of index " + index + " of bean with class : " + base.getClass().getName(), e); } }