SVN-Revision: r409
This commit is contained in:
wyf
2025-03-27 05:05:45 +00:00
parent f5d29694bb
commit d3fee8afb9
3 changed files with 42 additions and 35 deletions
+5 -1
View File
@@ -169,11 +169,15 @@ namespace Lskj.PubBomImport
{
saveResult = true;
}
else
{
throw new Exception($"保存Bom失败\r\n{tipMsg}");
}
}
}
catch (Exception ex)
{
MessageUtil.Show(ex.Message);
throw new Exception($"保存Bom失败\r\n{ex.Message}");
}
}
return saveResult;