gpt4 book ai didi

c# - 调用可能会在 catch 中抛出的方法

转载 作者:行者123 更新时间:2023-11-30 22:29:51 25 4
gpt4 key购买 nike

假设我们有一个我们使用的外部服务器(例如电话站等)。我们还有下一个代码:

try
{
externalService.CreateCall(callParams);
}
catch (Exception ex)
{
_log.Error("Unexpected exception when trying execute an external code.", ex);
_callService.UpdateCallState(call, CallState.Disconnected, CallOutcome.Failed);
throw;
}

理论上 UpdateCallState 可以抛出,但我们会使用该代码隐藏此异常,并且只会以正确的方式处理由 CreateCall 生成的异常。

问题是,对于这些情况,正确的模式是什么,以便我们正确处理所有异常?

最佳答案

您总是可以在第一个 catch 中嵌套另一个 try..catch 并适本地处理它。

try
{
externalService.CreateCall(callParams);
}
catch (Exception ex)
{
_log.Error("Unexpected exception when trying execute an external code.", ex);
try
{
_callService.UpdateCallState(call, CallState.Disconnected, CallOutcome.Failed);
}
catch(Exception updateEx)
{
// do something here, don't just swallow the exception
}
throw; // this still rethrows the original exception
}

关于c# - 调用可能会在 catch 中抛出的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9973242/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com