Presentation is loading. Please wait.

Presentation is loading. Please wait.

Exception Handling An Exception is an indication of a problem that occurs during a program’s execution. Exception handling enables the programmer to create.

Similar presentations


Presentation on theme: "Exception Handling An Exception is an indication of a problem that occurs during a program’s execution. Exception handling enables the programmer to create."— Presentation transcript:

1 Exception Handling An Exception is an indication of a problem that occurs during a program’s execution. Exception handling enables the programmer to create applications that can resolve (or handle) the exception. In many cases, handling an exception allows a program to notify the user of the problem, then terminate in a controlled manner Exception handling is designed to process synchronous errors-errors that occur during the normal program flow of control.

2 Common example of this type of errors
Out-of-range array Divide by zero Arithmetic overflow – a value outside the representable range of value Invalid method parameter I/O completion File not found, etc.

3 Exception handling is geared to situations in which the method or function that detects an error is unable to handle it Such a method or function throws an exception There is no guarantee that there will be an exception handler-code that executes when the program detects an exception – to process that kind of exception. If there is, the exception will caught and handled.

4 Throw an exception When a method or function called in program detects an exception or when the CLR( Common Language Runtime) detects a problem, the method/function or CLR throw an exception The point in the program at which an exception occurs is called the throw point-an important location for debugging purpose Exceptions are objects of classes that extend class Exception of namespace System

5 MC++ Exception handling
MC++ uses try block to enable exception handling. A try block consists of keyword try and { } that defines a block of code in which exceptions may occur. It encloses Statement that might cause exceptions Statements that should not execute if an exception occurs. Immediately following the try block are zero or more catch blocks (also called catch handlers) try {… } catch ( Exception * ) { … }

6 Catch handler Each catch handler specifies in parentheses an exception parameter that represent the type of exception the catch handler can handle. If it includes an optional parameter name, catch handler can use it to interact with a caught exception object. Optionally, a parameterless catch handler catches all exception types. Optional __finally block contains code that always executes, regardless of whether an exception occurs.

7 A try block must be followed by at least one catch block or __finally block
If no exception occur in a try block, the CLR ignores the exception handlers for that block Exception properties Message – stores the error message associated with an Exception object. This message may be a default message associated with the exception type or a customized message passed to an exception object’s constructor when the exception object is constructed.

8 Exception properties StackTrace – contains a string that represents the method call stack The runtime environment keeps a list of method calls that have been made up to a given moment. StackTrace string represents this list of method that had not finished processing at the time the exception occurred. The exact location at which the exception occurs in the program is called the exception’s throw point

9 Example: DivideByZeroException try { int res = num/de; }
catch(DivideByZeroException *e) { Console::WriteLine(e->Message);

10 Example- FormatException
try{ Cosole::Write(S”Enter an interger”); int x = Convert::ToInt32(Console::ReadLine()); } catch(FormatException *) { Console::WriteLine(S”You must enter integer”);

11 .NET exception hierarchy
Class Exception of namespace System is the base class of the ,NET Framework exception hierarchy Two of the most important derived classes of exception are ApplicationException and SystemException. ApplicationException is a base class that programmers can extend to create exception data types that are specific to their application The CLR can generate SystemException at any point during the execution of the program. Many of these exception can be avoided by coding properly. These are called runtime exception and they derive from class SystemException. For example, IndexOutOfRangeException NullReferenceException FileNotFoundException For a complete list of derived classes of Exception, look up Visual Studio .NET document


Download ppt "Exception Handling An Exception is an indication of a problem that occurs during a program’s execution. Exception handling enables the programmer to create."

Similar presentations


Ads by Google