Przeglądaj źródła

流程异常方法提示

24282 2 lat temu
rodzic
commit
471d5cae4b

+ 1 - 1
hx-flow/src/main/java/com/fjhx/flow/service/flow/impl/FlowProcessServiceImpl.java

@@ -135,7 +135,7 @@ public class FlowProcessServiceImpl implements FlowProcessService {
             businessId = flowDelegate.start(flowId, dto.getData());
         } catch (Exception e) {
             log.error("开始节点方法异常", e);
-            throw new ServiceException("开始节点方法异常");
+            throw new ServiceException("开始节点方法异常" + e.getMessage());
         }
 
         List<FlowExampleDetail> flowExampleDetailList = new ArrayList<>();