update - 执行计算审批候选人的日志显示

This commit is contained in:
wangli 2023-12-08 13:39:15 +08:00
parent c19d4d9cd2
commit 7f6e6bdfcc

View File

@ -64,7 +64,7 @@ public abstract class AbstractBpmnTaskAssigneeSelector implements BpmnTaskAssign
Assert.notNull(result, "服务调用异常");
// 200自定义处理
if (HttpStatus.HTTP_OK != result.getCode()) {
throw new WorkflowEngineException(result.getMsg());
throw new WorkflowEngineException("执行计算审批候选人出现异常: " + result.getMsg());
}
return result.getData();
}