使用以下try-catch块的目的是什么? C#

时间:2018-10-06 12:23:30

标签: c# exception try-catch

我永远在我们的代码中找到try-catch块,如下所示:

public void method()
{
   try {
      //some code
   } catch(Exception ex) {
     throw ex;
   }
 }

try-catch的需求是什么,有人可以告诉我为什么我们不应该这样做吗?

0 个答案:

没有答案