An exception reporting an error that occurred during the evaluation of an expression in a {@link MethodBinding} or {@link ValueBinding}.
919293949596979899100
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); } }
136137138139140141142143144145
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); } }
180181182183184185186187188189
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); } }
221222223224225226227228229230231232233234235236237238
{ 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); } }
370371372373374375376377378
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); } }
405406407408409410411412413
{ m.invoke(base, new Object[] {newValue}); } catch (Throwable t) { throw new EvaluationException("Bean: " + base.getClass().getName() + ", property: " + name, t); } }
437438439440441442443444445
{ return m.invoke(base, NO_ARGS); } catch (Throwable t) { throw new EvaluationException("Bean: " + base.getClass().getName() + ", property: " + name, t); } }
5556575859606162
try { return this.delegate.getValue(ctx); } catch (javax.el.PropertyNotFoundException e) { throw new PropertyNotFoundException(e.getMessage(), e.getCause()); } catch (ELException e) { throw new EvaluationException(e.getMessage(), e.getCause()); } }
6970717273747576
} catch (PropertyNotWritableException e) { throw new PropertyNotFoundException(e.getMessage(), e.getCause()); } catch (javax.el.PropertyNotFoundException e) { throw new PropertyNotFoundException(e.getMessage(), e.getCause()); } catch (ELException e) { throw new EvaluationException(e.getMessage(), e.getCause()); } }
8182838485868788
try { return this.delegate.isReadOnly(ctx); } catch (javax.el.PropertyNotFoundException e) { throw new PropertyNotFoundException(e.getMessage(), e.getCause()); } catch (ELException e) { throw new EvaluationException(e.getMessage(), e.getCause()); } }