What is the difference between System.Exception vs System.SystemException
feedback
|
|
Have a look here. In a nutshell, | |||
|
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. | |||
|
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. | |||||
|
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 | |||
|
feedback
|