64656667686970
if (m.equals(method)) { return; } } throw new ControllerException("501 Not Implemented method: " + method); }
116117118119120121122123
public void executeAction(String actionName) throws ControllerException { this.actionName = actionName; try { executeAction(); } catch (Exception e) { throw new ControllerException("failed to execute action: " + actionName, e); } }