Why is error handling important?

后端 未结 6 1246
北荒
北荒 2021-02-13 23:17

I was given a task of write the coding guidelines for my team, and it was going great until my manager asked me to write an explanation of Why Error Handling is Importan

6条回答
  •  伪装坚强ぢ
    2021-02-14 00:02

    First I would ask is it important?

    I've seen (ugly) code where some errors were ignored (eg null reference)

    So what type of errors are important to handle?

    There is a big difference between System.IO.FileNotFoundException, System.Data.SqlClient.SqlException and System.ApplicationException

提交回复
热议问题