Bit by bit I am collecting knowledge of C#.
What Ill like to learn is Good design of Exception handlig ?
Form where I should start ? Any Blog , Book or similar ?
Is there at all good practice for handling exception or that depends on programmers intuition and state of art or experience whatever?
I come to this point for asking this kind of help after I lost two days looking at code:
I handled exception for database retrieval, But did not handle well situation when returned parameters of SQL stored procedure contain null type, and things like that
|
|
|||
|
|
|
Eric Lippert has an excellent article on the different types of exceptions you may encounter and how you should be handling them. The four classes he uses are fatal, vexing, boneheaded and exogenous. http://blogs.msdn.com/b/ericlippert/archive/2008/09/10/vexing-exceptions.aspx |
|||
|
|
|
The vast majority of thrown exceptions (particularly usage exceptions like NullReferenceException or ArgumentException) indicate bugs and really shouldn't be caught or should only be caught at a very high level to provide logging and graceful failure presentation to the user. A few general ideas that have been helpful for me:
|
|||
|
|
|
||||
|
|
|
I think you need to be more specific in your question. For catching an exception from SQL, you'd wrap your code like this:
What do you mean by "[it] did not handle well in situations when returned parameters of SQL stored procedure contain null type, and things like that"? |
|||
|
|