System.SystemException and System.Exception

  • Thread starter Thread starter mfraser
  • Start date Start date
M

mfraser

What is the difference between System.SystemException and
System.Exception?
 
System.Exception is the base class for all exceptions.
System.SystemException is derived from System.Exception. Its counterpart is
System.ApplicationException.

The difference between ApplicationException and SystemException is that
SystemExceptions are thrown by the CLR, and ApplicationExceptions are thrown
by Applications.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top