285286287288289290291292293294295
Iterator i = applicableActionList.iterator(); while (i.hasNext()) { Action action = (Action) i.next(); try { action.body(ec, body); } catch (ActionException ae) { cai.addError("Exception in end() methd for action [" + action + "]", ae); } } }
277278279280281282283284285286287
Iterator i = applicableActionList.iterator(); while (i.hasNext()) { Action action = (Action) i.next(); try { action.body(ec, body); } catch (ActionException ae) { cai .addError("Exception in end() methd for action [" + action + "]", ae); }
265266267268269270271272273274275
Iterator i = applicableActionList.iterator(); while (i.hasNext()) { Action action = (Action) i.next(); try { action.body(ec, body); } catch (ActionException ae) { ec.addError("Exception in end() methd for action [" + action+ "]", this, ae); } } }