How many types of exception handlers are there in .NET?

Answers were Sorted based on User's Feedback



How many types of exception handlers are there in .NET?..

Answer / mayur rathod

The exception information table represents four types of
exception handlers for protected blocks:
A finally handler that executes whenever the block exits,
whether that occurs by normal control flow or by an
unhandled exception.
A fault handler that must execute if an exception occurs,
but does not execute on completion of normal control flow.
A type-filtered handler that handles any exception of a
specified class or any of its derived classes.
A user-filtered handler that runs user-specified code to
determine whether the exception should be handled by the
associated handler or should be passed to the next protected
block.

Is This Answer Correct ?    1 Yes 2 No

How many types of exception handlers are there in .NET?..

Answer / versha

1)Error provider

Is This Answer Correct ?    3 Yes 6 No

Post New Answer

More Dot Net General Interview Questions

Difference between assembly manifest & metadata assembly manifest

4 Answers   Ksb,


What is use of ContextUtil class?

1 Answers  


What is managed code execution?

0 Answers  


What is MSIL code ?

3 Answers   TCS,


What is lazy initialization?

0 Answers  






In Mvc Architecure what is view?

1 Answers   TCS,


Different levels of priority provided by .net.

0 Answers  


how to connect database connectivity in dotNET? if suppose SQL server?and also MS access?

8 Answers  


What are Sessions?

2 Answers   Deloitte,


What is file extension of Webservices in .Net?

0 Answers   Arigo Infotech,


What is the procedure to add assemly to gac to make it shared one?

0 Answers  


what is the use of stored procedure which has only one select statement over simple select statment query ? Why to write a stored procedure then ?

3 Answers  


Categories