-
Junior Member
exception handling
can u tell the difference b/w systemexception & appllication exception ?
-
Junior Member
Re: exception handling
SystemException are predefine system exception Whereas ApplicationException are those exception which is forwarded by user program not by the CLR.
-
Junior Member
Re: exception handling
System Exceptions are the exceptions that are raised by the Framework (CLR).(e.g NullReferenceException, ArithmeticException.) These are detected by the CLR and raised. Whereas Application exceptions can also be known as custom/user induced exceptions. Application specific exceptions can be raised using Application exception. (i.e. Raise an exception to terminate the process in between, if required input data is not available)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules