Is it bad practice to catch the Exception class instead of Exception sub-classes?

后端 未结 5 2019
夕颜
夕颜 2021-01-26 11:38

I have a method which throws subclasses of Exception. If I am performing the same catch functionality for each sub-class of Exception that\'s causght is it bad practice to just

5条回答
  •  面向向阳花
    2021-01-26 12:18

    It is always suggested to catch possible exceptions (sub classes) than just catching all exceptions using all in one Exception catch block. Here is one reference.

提交回复
热议问题