An exception caused by a method name that cannot be resolved against a base object.
266267268269270271272273274
{ return (clazz.getMethod(name, args)); } catch (NoSuchMethodException e) { throw new MethodNotFoundException(ref + ": " + e.getMessage()); } }
101102103104105106107108109110111
{ Class backingClass = backingBean.getClass(); Method method = _methodCache.getMethod( backingClass, _methodName, _params ); if ( method == null ) throw new MethodNotFoundException( _methodName ); AnnotationReader annReader = AnnotationReader.getAnnotationReader( backingClass, servletContext ); ProcessedAnnotation ann = annReader.getJpfAnnotation( method, "CommandHandler" ); if ( ann != null ) {
102103104105106107108109110111112
if (backingBean != null) { Class backingClass = backingBean.getClass(); Method method = _methodCache.getMethod(backingClass, _methodName, _params); if (method == null) { throw new MethodNotFoundException(_methodName); } AnnotationReader annReader = AnnotationReader.getAnnotationReader(backingClass, servletContext); ProcessedAnnotation ann = annReader.getJpfAnnotation(method, "CommandHandler"); if (ann != null) {
3637383940414243
@Override public Class<?> getType(FacesContext context) throws MethodNotFoundException { try { return expression.getMethodInfo(context.getELContext()).getReturnType(); } catch (javax.el.MethodNotFoundException e) { throw new MethodNotFoundException(e); } }
49505152535455565758
public Object invoke(FacesContext context, Object[] params) throws EvaluationException, MethodNotFoundException { try { return expression.invoke(context.getELContext(), params); } catch (javax.el.MethodNotFoundException e) { throw new MethodNotFoundException(e); } catch (ELException e) { throw new EvaluationException(e); } }
5859606162636465666768
{ return m.getMethodInfo(context.getELContext()).getReturnType(); } catch (javax.el.MethodNotFoundException e) { throw new MethodNotFoundException(e.getMessage(), e.getCause()); } catch (ELException e) { throw new EvaluationException(e.getMessage(), e.getCause()); }
8182838485868788899091
{ return m.invoke(context.getELContext(), params); } catch (javax.el.MethodNotFoundException e) { throw new MethodNotFoundException(e.getMessage(), e.getCause()); } catch (ELException e) { throw new EvaluationException(e.getMessage(), e.getCause()); }