Error checking overkill?

Posted by James on Stack Overflow See other posts from Stack Overflow or by James
Published on 2010-04-05T18:25:24Z Indexed on 2010/04/05 18:33 UTC
Read the original article Hit count: 446

Filed under:
|

What error checking do you do? What error checking is actually necessary? Do we really need to check if a file has saved successfully? Shouldn't it always work if it's tested and works ok from day one?

I find myself error checking for every little thing, and most of the time if feels overkill. Things like checking to see if a file has been written to a file system successfully, checking to see if a database statement failed.......shouldn't these be things that either work or don't?

How much error checking do you do? Are there elements of error checking that you leave out because you trust that it'll just work?

I'm sure I remember reading somewhere something along the lines of "don't test for things that'll never really happen".....can't remember the source though.

So should everything that could possibly fail be checked for failure? Or should we just trust those simpler operations? For example, if we can open a file, should we check to see if reading each line failed or not? Perhaps it depends on the context within the application or the application itself.

It'd be interesting to hear what others do.

Thanks,

James.

© Stack Overflow or respective owner

Related posts about subjective

Related posts about error-checking