---
title: "Is it possible to execute two catch blocks?"  
description: "Is it possible to execute two catch blocks?"  
author: "Sumit Kesarwani"  
published: 2014-09-04  
updated: 2020-09-23  
canonical: https://www.mindstick.com/interview/2135/is-it-possible-to-execute-two-catch-blocks  
category: "c#"  
tags: ["c#"]  
reading_time: 1 minute  

---

# Is it possible to execute two catch blocks?

You are allowed to include more than one catch block in your program; however, it is not possible to execute them in one go. Whenever, an exception occurs in your program, the correct catch block is executed and the control goes to the finally block.

## Answers

### Answer by Sumit Kesarwani

You are allowed to include more than one catch block in your program; however, it is not possible to execute them in one go. Whenever, an exception occurs in your program, the correct catch block is executed and the control goes to the finally block.


---

Original Source: https://www.mindstick.com/interview/2135/is-it-possible-to-execute-two-catch-blocks

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
