An exception reporting an error that occurred during the evaluation of an expression in a {@link MethodBinding} or {@link ValueBinding}.
63646566676869707172737475
} } else { return (PropertyUtils.getSimpleProperty(base, name)); } } catch (IllegalAccessException e) { throw new EvaluationException(e); } catch (InvocationTargetException e) { throw new EvaluationException(e.getTargetException()); } catch (NoSuchMethodException e) { throw new PropertyNotFoundException(name); } }
9596979899100101102103104105106107
((Map) base).put(name, value); } else { PropertyUtils.setSimpleProperty(base, name, value); } } catch (IllegalAccessException e) { throw new EvaluationException(e); } catch (InvocationTargetException e) { throw new EvaluationException(e.getTargetException()); } catch (NoSuchMethodException e) { throw new PropertyNotFoundException(name); } }
138139140141142143144145
wfs = wfsf.newWorkflowService(); } return wfs; } catch (FactoryConfigurationError e) { logger.error (e.getMessage(), e); throw new EvaluationException (e.getMessage()); } }
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); }
7172737475767778
throw new IllegalStateException("unknown scope defined: " + scope); } } catch (ELException e) { throw new EvaluationException(e.getMessage(), e); } }
179180181182183184185186187188189
211212213214215216217218219220221