I've caught an exception!! Now what?

后端 未结 16 899
逝去的感伤
逝去的感伤 2021-02-02 05:15

I\'ve started using try-catch blocks (a bit late, I know!), but now I\'m not sure what to do with the exception once I\'ve caught it. What should I do?



        
16条回答
  •  北海茫月
    2021-02-02 05:40

    Rule of thumb for exception handling--If you don't know what to do with it, don't catch it.

    Corollary to the rule of thumb for exception handling--Handle exceptions at the last responsible moment. If you don't know if this is the last responsible moment, it isn't.

提交回复
热议问题