Browse Source

1.入库异常逻辑优化

master
zhenghaoyu 10 months ago
parent
commit
ce42943676
  1. 4
      blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/InComingServiceImpl.java

4
blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/InComingServiceImpl.java

@ -322,7 +322,7 @@ public class InComingServiceImpl implements IInComingService {
});
} catch (Exception customerException) {
log.error(">>>>>>>>>>>>>>>>>>>>>>>>>> 消息推送失败~ 请联系管理员! ", customerException);
throw new CustomerException(customerException.getMessage());
// throw new CustomerException(customerException.getMessage());
}
@ -335,7 +335,7 @@ public class InComingServiceImpl implements IInComingService {
});
} catch (Exception e) {
log.error(">>>>>>>>>>>>>>>>>>>>>>>>>> 预入库消息推送失败~ 请联系管理员! ", e);
throw new CustomerException("服务器异常");
// throw new CustomerException("服务器异常");
}

Loading…
Cancel
Save