in reactor/Core/src/jetbrains/mps/logic/reactor/evaluation/Solver.java [95:103]
default Result tryTell(PredicateInvocation invocation) {
try {
tell(invocation);
return Result.OK();
} catch (Throwable t) {
return Result.FAIL(t);
}
}