---
title: "Can multiple catch blocks be executed?"  
description: "Can multiple catch blocks be executed?"  
author: "Anonymous User"  
published: 2010-10-16  
updated: 2020-09-23  
canonical: https://www.mindstick.com/interview/15/can-multiple-catch-blocks-be-executed  
category: "c#"  
tags: ["c#"]  
reading_time: 1 minute  

---

# Can multiple catch blocks be executed? 

No. Multiple catch block can not be executed.\
\
We may have the multiple catch block.Every catch block \
has the different exception.when code found any error \
suitable exception will be fired but only one catch block \
executed.

## Answers

### Answer by Pushpendra Singh

No. Multiple catch block can not be executed.\
\
We may have the multiple catch block.Every catch block \
has the different exception.when code found any error \
suitable exception will be fired but only one catch block \
executed.


---

Original Source: https://www.mindstick.com/interview/15/can-multiple-catch-blocks-be-executed

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
