如何防止嵌套异常中的Java导航

问题描述 投票:2回答:1

在Java中的嵌套异常中,嵌套的Exception总是转到父类,因此它会发生两次,而初始异常下面的代码将永远不会被执行。如何在C#中防止它?

try
{
    try
    {

    }
    catch(Exception ex)
    {
        // Excep  goes to parent Exception try catch
    }        

    The code here is never executes

}
catch(Exception ex)
{

}
java exception
1个回答
-1
投票

这可以解决您的问题:尝试{try {

  }
  catch(Exception ex)
  {
      // Excep  goes to parent Exception try catch
  }        
  finally
  {
        The code here is never executes
   }
}
catch(Exception ex)
{

}
© www.soinside.com 2019 - 2024. All rights reserved.