tags:

views:

2229

answers:

6

What is best practice when creating your exception classes in a .NET solution: To derive from System.Exception or from System.ApplicationException?

+11  A: 

ApplicationException considered useless – a strong, and critical, argument.

Konrad Rudolph
+6  A: 

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

rp
+24  A: 

According to Jeffery Richter in the Framework Design Guidelines book:

System.ApplicationException is a class that should not be part of the .NET framework.

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.

fryguybob
+1  A: 

Yeah, Konrad has it right.

On a related note: another thing thought useful (or "best practice") but really isn't is implementing ICloneable.

Craig
A: 

I'm used to do:

private void buttonFoo_Click()
{
    try
    {
       foo();
    } 
    catch(ApplicationException ex)
    {
      Log.UserWarning(ex);
      MessageVox.Show(ex.Message);
    }
    catch(Exception ex)
    {
       Log.CodeError(ex);
       MessageBox.Show("Internal error.");
    }
}

It allow to do the difference between:
- C# code system error that I must repairs.
- "Normal" user error that do not need correction from me.

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.

Olivier de Rivoyre
Very few that you know about. Anyone following the Framework Design Guidelines will not be deriving from ApplicationException. If you want to maintain this pattern, then you need to create your own type like MyApplicationExcptionBase and derive all of your custom exceptions from that. BTW, the Guidelines say to create few derived exception types.
John Saunders
You right: today, if I had to start from scratch, I will create a "UserError" Exception. Nevertheless, I will not refactor my old code: it is not very critique.
Olivier de Rivoyre
+3  A: 

Even MSDN now says to ignore ApplicationException:

If you are designing an application that needs to create its own exceptions, you are advised to derive custom exceptions from the Exception class. It was originally thought that custom exceptions should derive from the ApplicationException class; however in practice this has not been found to add significant value. For more information, see Best Practices for Handling Exceptions.

http://msdn.microsoft.com/en-us/library/system.applicationexception.aspx

Blorgbeard