doPlugin error handling
This commit is contained in:
parent
20b04e3e8e
commit
69d4839529
1 changed files with 2 additions and 2 deletions
|
@ -1344,9 +1344,9 @@ public class SimpleReasoner extends StatementListener {
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} catch (Throwable t) {
|
} catch (Exception e) {
|
||||||
log.error("Exception while processing " + (op == ModelUpdate.Operation.ADD ? "an added" : "a removed") +
|
log.error("Exception while processing " + (op == ModelUpdate.Operation.ADD ? "an added" : "a removed") +
|
||||||
" statement in SimpleReasoner plugin:" + plugin.getClass().getName() + " -- " + t.getMessage());
|
" statement in SimpleReasoner plugin:" + plugin.getClass().getName() + " -- " + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue