SlideShare a Scribd company logo
2
Most read
6
Most read
7
Most read
C#
LECTURE#12
Abid Kohistani
GC Madyan Swat
Exception Handling
An exception is a problem that arises during the execution of a program.
A C# exception is a response to an exceptional circumstance that arises while a program is running, such as an attempt to
divide by zero.
Exceptions provide a way to transfer control from one part of a program to another. C# exception handling is built
upon four keywords: try, catch, finally, and throw.
try − A try block identifies a block of code for which particular exceptions is activated. It is followed by one or more catch
blocks.
catch − A program catches an exception with an exception handler at the place in a program where you want to handle the
problem. The catch keyword indicates the catching of an exception.
finally − The finally block is used to execute a given set of statements, whether an exception is thrown or not thrown. For
example, if you open a file, it must be closed whether an exception is raised or not.
throw − A program throws an exception when a problem shows up. This is done using a throw keyword.
Syntax
Assuming a block raises an exception, a method catches an exception using a combination of the try and catch keywords.
A try/catch block is placed around the code that might generate an exception.
Code within a try/catch block is referred to as protected code, and the syntax for using try/catch looks like the following:
You can list down multiple catch statements to catch different type of exceptions in case your try block raises more than one
exception in different situations.
try {
// statements causing exception
} catch( ExceptionName e1 ) {
// error handling code
} catch( ExceptionName e2 ) {
// error handling code
} catch( ExceptionName eN ) {
// error handling code
} finally {
// statements to be executed }
Exception Classes in C#
C# exceptions are represented by classes.
The exception classes in C# are mainly directly or indirectly derived from the System.Exception class.
Some of the exception classes derived from the System.
Exception class are the System.ApplicationException and System.SystemException classes.
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.
Sytem.SystemException class
Sr.No. Exception Class & Description
1 System.IO.IOException
Handles I/O errors.
2 System.IndexOutOfRangeException
Handles errors generated when a method refers to an array index out of range.
3 System.ArrayTypeMismatchException
Handles errors generated when type is mismatched with the array type.
4 System.NullReferenceException
Handles errors generated from referencing a null object.
5 System.DivideByZeroException
Handles errors generated from dividing a dividend with zero.
6 System.InvalidCastException
Handles errors generated during typecasting.
7 System.OutOfMemoryException
Handles errors generated from insufficient free memory.
8 System.StackOverflowException
Handles errors generated from stack overflow.
Handling Exceptions
C# provides a structured solution to the exception handling in the form of try and catch blocks. Using these
blocks the core program statements are separated from the error-handling statements.
These error handling blocks are implemented using the try, catch, and finally keywords. Following is an
example of throwing an exception when dividing by zero condition occurs
Example
using System;
namespace ErrorHandlingApplication {
class DivNumbers {
int result;
DivNumbers() { result = 0;
}
public void division(int num1, int num2)
{
try { result = num1 / num2; }
catch (DivideByZeroException e) {
Console.WriteLine("Exception caught: {0}", e);
} finally {
Console.WriteLine("Result: {0}", result);
} }
static void Main(string[] args) {
DivNumbers d = new DivNumbers();
d.division(25, 0);
Console.ReadKey();
} } }
Exception caught:
System.DivideByZeroException: Attempted
to divide by zero.
at ...
Result: 0
output
Creating User-Defined Exceptions
You can also define your own exception. User-defined exception classes are derived from the Exception class. The following
example demonstrates this −
using System;
namespace UserDefinedException {
class TestTemperature {
static void Main(string[] args) {
Temperature temp = new Temperature();
try {
temp.showTemp();
} catch(TempIsZeroException e) {
Console.WriteLine("TempIsZeroException: {0}", e.Message);
} Console.ReadKey();
}
} }
public class TempIsZeroException: Exception {
public TempIsZeroException(string message): base(message) {
}
}
public class Temperature {
int temperature = 0;
public void showTemp() {
if(temperature == 0) {
throw (new TempIsZeroException("Zero Temperature found"));
}
else {
Console.WriteLine("Temperature: {0}", temperature);
}
}
}
TempIsZeroException: Zero Temperature
found
This output will be
displayed
The throw keyword
The throw statement allows you to create a custom error.
The throw statement is used together with an exception class. There are many exception classes available in C#:
ArithmeticException, FileNotFoundException, IndexOutOfRangeException, TimeOutException, etc:
static void checkAge(int age)
{
if (age < 18)
{
throw new ArithmeticException("Access denied - You must be at least 18 years old.");
}
else
{
Console.WriteLine("Access granted - You are old enough!");
}
}
static void Main(string[] args)
{
checkAge(15)
; }
Example
System.ArithmeticException: 'Access denied - You must be at least 18 years old.'Error if age<18
checkAge(20); Access granted - You are old enough!
finally keyword
In programming, sometimes an exception may cause an error which ends the current method.
However, that method might have opened a file or a network that needs to be closed.
So, to overcome such types of problem, C# provides a special keyword named as finally keyword. It is a reserved
keyword in C#.
The finally block will execute when the try/catch block leaves the execution, no matter what condition cause it. It always
executes whether the try block terminates normally or terminates due to an exception.
The main purpose of finally block is to release the system resources.
The finally block follows try/catch block.
Syntax
try
{
// code...
}
// this is optional
Catch
{
// code..
}
finally
{
// code..
}
Important Points:
In C#, multiple finally blocks in the same program are not allowed.
The finally block does not contain any return, continue, break statements because it does not
allow controls to leave the finally block.
You can also use finally block only with a try block means without a catch block but in this
situation, no exceptions are handled.
The finally block will be executed after the try and catch blocks, but before control transfers back
to its origin.
Example
1.using System;
2.public class ExExample
3.{
4. public static void Main(string[] args)
5. {
6. try
7. {
8. int a = 10;
9. int b = 0;
10. int x = a / b;
11. }
12. catch (Exception e) { Console.WriteLine(e); }
13. finally { Console.WriteLine("Finally block is executed"); }
14. Console.WriteLine("Rest of the code");
15. }
16.}
System.DivideByZeroException: Attempted to divide by
zero.
Finally block is executed
Rest of the code
output
END

More Related Content

PPT
C# Exceptions Handling
PPT
CSharp.ppt
PPTX
LECTURE 12 WINDOWS FORMS PART 2.pptx
PPTX
Basics of Java Concurrency
PPTX
Delegates and events in C#
PPT
C# basics
PPT
Programming in c#
PPTX
C# classes objects
C# Exceptions Handling
CSharp.ppt
LECTURE 12 WINDOWS FORMS PART 2.pptx
Basics of Java Concurrency
Delegates and events in C#
C# basics
Programming in c#
C# classes objects

What's hot (20)

PPTX
JAVA AWT
PPT
ADO .Net
PPTX
Access specifiers(modifiers) in java
PDF
Arrays in Java
PDF
Java I/o streams
PPTX
Android Intent.pptx
PPTX
Inheritance in java
PPT
Java interfaces
PPSX
JDBC: java DataBase connectivity
PDF
Chapter 02: Classes Objects and Methods Java by Tushar B Kute
PPT
Abstract class in java
PPTX
java interface and packages
PPTX
Classes, objects in JAVA
PPTX
Java program structure
PPT
JDBC – Java Database Connectivity
PPTX
Java packages
PPTX
Dynamic method dispatch
PPTX
Structure of java program diff c- cpp and java
PPTX
Ado.Net Tutorial
PPT
Abstract class
JAVA AWT
ADO .Net
Access specifiers(modifiers) in java
Arrays in Java
Java I/o streams
Android Intent.pptx
Inheritance in java
Java interfaces
JDBC: java DataBase connectivity
Chapter 02: Classes Objects and Methods Java by Tushar B Kute
Abstract class in java
java interface and packages
Classes, objects in JAVA
Java program structure
JDBC – Java Database Connectivity
Java packages
Dynamic method dispatch
Structure of java program diff c- cpp and java
Ado.Net Tutorial
Abstract class
Ad

Similar to Exception Handling in C# (20)

PPTX
PPTX
Presentation1
PPTX
12. Exception Handling
PPT
Exception
PPT
Exceptions
PPTX
6-Error Handling.pptx
PPTX
Exceptions overview
PPTX
PPTX
IakakkakjabbhjajjjjjajjajwsjException.pptx
PPTX
PPTX
C Sharp Tutorial : C Sharp Exception
PPTX
PPT
Exceptions
PPTX
Exception handling in ASP .NET
PPTX
Exception Handlin g C#.pptx
PPT
Exception handling
PPTX
Exception handling in c
PPTX
Exception handling in c
PPT
12 Exceptions handling
PPTX
Chapter_4_WP_with_C#_Exception_Handling_student_1.0.pptx
Presentation1
12. Exception Handling
Exception
Exceptions
6-Error Handling.pptx
Exceptions overview
IakakkakjabbhjajjjjjajjajwsjException.pptx
C Sharp Tutorial : C Sharp Exception
Exceptions
Exception handling in ASP .NET
Exception Handlin g C#.pptx
Exception handling
Exception handling in c
Exception handling in c
12 Exceptions handling
Chapter_4_WP_with_C#_Exception_Handling_student_1.0.pptx
Ad

More from Abid Kohistani (9)

PPT
Algorithm in Computer, Sorting and Notations
PPTX
Polymorphism in C# Function overloading in C#
PPTX
Access Modifiers in C# ,Inheritance and Encapsulation
PPTX
OOP in C# Classes and Objects.
PPTX
Loops in C# for loops while and do while loop.
PPTX
Conditions In C# C-Sharp
PPTX
C# Operators. (C-Sharp Operators)
PPTX
data types in C-Sharp (C#)
PPTX
Methods In C-Sharp (C#)
Algorithm in Computer, Sorting and Notations
Polymorphism in C# Function overloading in C#
Access Modifiers in C# ,Inheritance and Encapsulation
OOP in C# Classes and Objects.
Loops in C# for loops while and do while loop.
Conditions In C# C-Sharp
C# Operators. (C-Sharp Operators)
data types in C-Sharp (C#)
Methods In C-Sharp (C#)

Recently uploaded (20)

PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Approach and Philosophy of On baking technology
PDF
KodekX | Application Modernization Development
PDF
Empathic Computing: Creating Shared Understanding
DOCX
The AUB Centre for AI in Media Proposal.docx
PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PPT
Teaching material agriculture food technology
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Machine learning based COVID-19 study performance prediction
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPTX
Cloud computing and distributed systems.
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PPTX
Big Data Technologies - Introduction.pptx
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Diabetes mellitus diagnosis method based random forest with bat algorithm
Approach and Philosophy of On baking technology
KodekX | Application Modernization Development
Empathic Computing: Creating Shared Understanding
The AUB Centre for AI in Media Proposal.docx
Programs and apps: productivity, graphics, security and other tools
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
Teaching material agriculture food technology
Per capita expenditure prediction using model stacking based on satellite ima...
Chapter 3 Spatial Domain Image Processing.pdf
Dropbox Q2 2025 Financial Results & Investor Presentation
Advanced methodologies resolving dimensionality complications for autism neur...
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Machine learning based COVID-19 study performance prediction
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Cloud computing and distributed systems.
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Big Data Technologies - Introduction.pptx

Exception Handling in C#

  • 2. Exception Handling An exception is a problem that arises during the execution of a program. A C# exception is a response to an exceptional circumstance that arises while a program is running, such as an attempt to divide by zero. Exceptions provide a way to transfer control from one part of a program to another. C# exception handling is built upon four keywords: try, catch, finally, and throw. try − A try block identifies a block of code for which particular exceptions is activated. It is followed by one or more catch blocks. catch − A program catches an exception with an exception handler at the place in a program where you want to handle the problem. The catch keyword indicates the catching of an exception. finally − The finally block is used to execute a given set of statements, whether an exception is thrown or not thrown. For example, if you open a file, it must be closed whether an exception is raised or not. throw − A program throws an exception when a problem shows up. This is done using a throw keyword.
  • 3. Syntax Assuming a block raises an exception, a method catches an exception using a combination of the try and catch keywords. A try/catch block is placed around the code that might generate an exception. Code within a try/catch block is referred to as protected code, and the syntax for using try/catch looks like the following: You can list down multiple catch statements to catch different type of exceptions in case your try block raises more than one exception in different situations. try { // statements causing exception } catch( ExceptionName e1 ) { // error handling code } catch( ExceptionName e2 ) { // error handling code } catch( ExceptionName eN ) { // error handling code } finally { // statements to be executed }
  • 4. Exception Classes in C# C# exceptions are represented by classes. The exception classes in C# are mainly directly or indirectly derived from the System.Exception class. Some of the exception classes derived from the System. Exception class are the System.ApplicationException and System.SystemException classes. 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.
  • 5. Sytem.SystemException class Sr.No. Exception Class & Description 1 System.IO.IOException Handles I/O errors. 2 System.IndexOutOfRangeException Handles errors generated when a method refers to an array index out of range. 3 System.ArrayTypeMismatchException Handles errors generated when type is mismatched with the array type. 4 System.NullReferenceException Handles errors generated from referencing a null object. 5 System.DivideByZeroException Handles errors generated from dividing a dividend with zero. 6 System.InvalidCastException Handles errors generated during typecasting. 7 System.OutOfMemoryException Handles errors generated from insufficient free memory. 8 System.StackOverflowException Handles errors generated from stack overflow.
  • 6. Handling Exceptions C# provides a structured solution to the exception handling in the form of try and catch blocks. Using these blocks the core program statements are separated from the error-handling statements. These error handling blocks are implemented using the try, catch, and finally keywords. Following is an example of throwing an exception when dividing by zero condition occurs Example using System; namespace ErrorHandlingApplication { class DivNumbers { int result; DivNumbers() { result = 0; } public void division(int num1, int num2) { try { result = num1 / num2; } catch (DivideByZeroException e) { Console.WriteLine("Exception caught: {0}", e); } finally { Console.WriteLine("Result: {0}", result); } } static void Main(string[] args) { DivNumbers d = new DivNumbers(); d.division(25, 0); Console.ReadKey(); } } } Exception caught: System.DivideByZeroException: Attempted to divide by zero. at ... Result: 0 output
  • 7. Creating User-Defined Exceptions You can also define your own exception. User-defined exception classes are derived from the Exception class. The following example demonstrates this − using System; namespace UserDefinedException { class TestTemperature { static void Main(string[] args) { Temperature temp = new Temperature(); try { temp.showTemp(); } catch(TempIsZeroException e) { Console.WriteLine("TempIsZeroException: {0}", e.Message); } Console.ReadKey(); } } } public class TempIsZeroException: Exception { public TempIsZeroException(string message): base(message) { } } public class Temperature { int temperature = 0; public void showTemp() { if(temperature == 0) { throw (new TempIsZeroException("Zero Temperature found")); } else { Console.WriteLine("Temperature: {0}", temperature); } } } TempIsZeroException: Zero Temperature found This output will be displayed
  • 8. The throw keyword The throw statement allows you to create a custom error. The throw statement is used together with an exception class. There are many exception classes available in C#: ArithmeticException, FileNotFoundException, IndexOutOfRangeException, TimeOutException, etc: static void checkAge(int age) { if (age < 18) { throw new ArithmeticException("Access denied - You must be at least 18 years old."); } else { Console.WriteLine("Access granted - You are old enough!"); } } static void Main(string[] args) { checkAge(15) ; } Example System.ArithmeticException: 'Access denied - You must be at least 18 years old.'Error if age<18 checkAge(20); Access granted - You are old enough!
  • 9. finally keyword In programming, sometimes an exception may cause an error which ends the current method. However, that method might have opened a file or a network that needs to be closed. So, to overcome such types of problem, C# provides a special keyword named as finally keyword. It is a reserved keyword in C#. The finally block will execute when the try/catch block leaves the execution, no matter what condition cause it. It always executes whether the try block terminates normally or terminates due to an exception. The main purpose of finally block is to release the system resources. The finally block follows try/catch block. Syntax try { // code... } // this is optional Catch { // code.. } finally { // code.. }
  • 10. Important Points: In C#, multiple finally blocks in the same program are not allowed. The finally block does not contain any return, continue, break statements because it does not allow controls to leave the finally block. You can also use finally block only with a try block means without a catch block but in this situation, no exceptions are handled. The finally block will be executed after the try and catch blocks, but before control transfers back to its origin.
  • 11. Example 1.using System; 2.public class ExExample 3.{ 4. public static void Main(string[] args) 5. { 6. try 7. { 8. int a = 10; 9. int b = 0; 10. int x = a / b; 11. } 12. catch (Exception e) { Console.WriteLine(e); } 13. finally { Console.WriteLine("Finally block is executed"); } 14. Console.WriteLine("Rest of the code"); 15. } 16.} System.DivideByZeroException: Attempted to divide by zero. Finally block is executed Rest of the code output
  • 12. END