What is best practice when creating your exception classes in a .NET solution: To derive from System.Exception or from System.ApplicationException?
|
|
|
According to Jeffery Richter in the Framework Design Guidelines book:
It was intended to have some meaning in that you could potentially catch "all" the application exceptions, but the pattern was not followed and so it has no value. |
|||
|
|
|
|||
|
|
|
Even MSDN now says to ignore ApplicationException:
http://msdn.microsoft.com/en-us/library/system.applicationexception.aspx |
|||
|
|
|
The authors of the framework themselves consider ApplicationException worthless: http://blogs.msdn.com/kcwalina/archive/2006/06/23/644822.aspx with a nice follow-up here: http://blogs.msdn.com/kcwalina/archive/2006/07/05/657268.aspx When in doubt, I follow their book Framework Design Guidelines. http://www.amazon.com/Framework-Design-Guidelines-Conventions-Development/dp/0321246756 The topic of the blog post is further discussed there. rp |
|||
|
|
|
Yeah, Konrad has it right. On a related note: another thing thought useful (or "best practice") but really isn't is implementing ICloneable. |
||||
|
|
|
I'm used to do:
It allow to do the difference between:
I know it is not recommended to use ApplicationException, but it works great since there is very few classes that do not respect the ApplicationException pattern. |
|||||||
|