5152535455565758
* @throws AbortedException if found necessary. */ protected final void abortIfNeeded() { if (shouldAbort()) { abort(); // execute subclass specific abortion logic throw new AbortedException(); } }
5556575859606162
try { abort(); // execute subclass specific abortion logic } catch (IOException e) { LogFactory.getLog(getClass()).debug("FYI", e); } throw new AbortedException(); } }
4748495051525354