(toString() + " has been aborted, but the currently "
+ "running tool could not be stopped: " + e.getMessage());
} else {
Collection subs = performersLocal();
for (Iterator i = subs.iterator (); i.hasNext();) {
WfProcessLocal p = (WfProcessLocal)i.next();
try {
try {
p.suspend ();
} catch (AlreadySuspendedException as) {
// the better, make checkstyle happy
int dummy = 0;
}
p.abort ();
} catch (CannotSuspendException ee) {
throw new CannotStopException
("To be aborted sub-process cannot be suspended: "
+ e.getMessage ());
} catch (NotRunningException ee) {