how can CLR handle Exceptions
narendra yallamarthi
Select an image from your device to upload
When an error occurs , the currently executing application or the system (CLR) reports it by throwing an EXCEPTION which happens to be human readable text providing information about the error.
A search of the call stack immediately begins until the exception is handled.If the top of the call stack is reached without finding a catch block that handles the exception , then the default exception handler will handle it and application execution terminates