What is the difference between System.ApplicationException class and System.SystemException class?

Technology CommunityCategory: C#What is the difference between System.ApplicationException class and System.SystemException class?
VietMX Staff asked 3 years ago
  • The System.ApplicationException class supports exceptions generated by application programs. Hence the exceptions defined by the programmers should derive from this class.
  • The System.SystemException class is the base class for all predefined system exception.