UIMAFramework.getLogger(this.getClass()).log(Level.SEVERE, e.getMessage(), e);
ArrayList statusCbL = this.getCallbackListeners();
EntityProcessStatusImpl enProcSt = new EntityProcessStatusImpl(procTr, true);
// e is the actual exception.
enProcSt.addEventStatus("CPM", "Failed", e);
// Notify all listeners that the CPM has finished processing
for (int j = 0; statusCbL != null && j < statusCbL.size(); j++) {
BaseStatusCallbackListener st = (BaseStatusCallbackListener) statusCbL.get(j);
if (st instanceof StatusCallbackListener) {