What is the difference between System.Exception vs System.SystemException

link|improve this question
3  
tinyurl.com/ygsqy36 – Sean Bright Feb 3 '10 at 5:49
@SeanBright I love how, two years later, I find this SO question at the top of the google search results for that very thing – cost Apr 28 at 10:56
feedback

4 Answers

Have a look here.

In a nutshell, System.Exception is defined by applications and System.SystemException is defined by the system (.NET Framework).

link|improve this answer
feedback

A SystemException is usually reserved for the .NET runtime/framework to use, and not your application code. Basically, don't derive from SystemException when creating your own custom Exception class.

If you are creating your own Exception classes, you should either derive them from Exception or ApplicationException. ApplicationException was originally intended to be used for non-framework exceptions, but it has sort of fallen to the wayside. I believe the framework authors now recommend to derive your custom Exceptions from the base Exception class.

link|improve this answer
feedback

Here, this might help: http://stackoverflow.com/questions/848017/difference-between-application-exception-and-system-exception

SystemException provided as a means to differentiate between exceptions defined by the system versus exceptions defined by applications.

link|improve this answer
Haha, your edit says exactly what my answer does. :) – Kyle Rozendo Feb 3 '10 at 5:55
I didn't saw your answer – cornerback84 Mar 4 '10 at 6:02
feedback

What is Exception? What is the difference between System exceptions and Application exceptions? An exception is what happens when something goes wrong with the code at runtime. All exception derives from Exception Base class. Exceptions can be generated programmatically or can be generated by system. Readmore visit: Blosumsdotnet.blogspot.com

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.