707172737475767778
try { Method m = getMethod(instance.getClass(), methodName); result = m.invoke(instance, args); } catch(Exception ex) { throw new ExecutionException(instance.getClass().getName(), methodName, args, ex); } return result; }
396397398399400401402403404405406407
result = afResult; } } } catch (Exception ex) { log.error("Error in executeControllerAction controller/action: " + controller + "/" + method, ex); ExecutionException eex = new ExecutionException(controller.getClass().getName(), method.getName(), null, ex); throw eex; } return result; }