设备接入出现异常直接抛出

This commit is contained in:
guofeihu
2024-06-13 09:23:44 +08:00
parent 6800eea117
commit 4ce70bc5ff

View File

@@ -423,7 +423,7 @@ public class CsDeviceServiceImpl implements ICsDeviceService {
} }
return "success"; return "success";
} catch (BusinessException e) { } catch (BusinessException e) {
return e.getMessage(); throw new BusinessException(e.getMessage());
} }
} }