Can we throw exception from catch Block?

Answers were Sorted based on User's Feedback



Can we throw exception from catch Block?..

Answer / swaroop

Yes, we can.

Is This Answer Correct ?    62 Yes 6 No

Can we throw exception from catch Block?..

Answer / deepika

The above answer is wrong.We can absolutely throw
exceptions in catch blocks.This is called bubbling the
exceptions to one level higher.If catch block can not
handle exceptions,then it can throw the exception that it
caught, to it's caller

Is This Answer Correct ?    46 Yes 1 No

Can we throw exception from catch Block?..

Answer / devender kumar

Yes. we can throw the exception from the catch block.
If anyone have confusion then try this code:


protected void Button1_Click(object sender, EventArgs e)
{
try
{
Test();
}
catch (Exception ex)
{
Response.Write(ex.ToString());
}
}
private void Test()
{
try
{
throw new Exception("Dev");
}
catch (Exception ex)
{
throw ex;
}
}

Is This Answer Correct ?    40 Yes 2 No

Can we throw exception from catch Block?..

Answer / manee

we can throw the exception in catch block by using throw New
Exception("Exception Message")

Is This Answer Correct ?    24 Yes 2 No

Can we throw exception from catch Block?..

Answer / kakarala sowjanya

You can catch exceptions when the purpose of catching the
exception is to re-throw or transfer the exception to a
different thread. so we can throw exception from catch block

Is This Answer Correct ?    22 Yes 1 No

Can we throw exception from catch Block?..

Answer / kamlesh sharma

yes we can through exception If catch block can not
handle exceptions,then it throw the exception to it's
caller

Is This Answer Correct ?    16 Yes 2 No

Can we throw exception from catch Block?..

Answer / progguru

yes

Is This Answer Correct ?    16 Yes 2 No

Can we throw exception from catch Block?..

Answer / rajesh.pinninty

Exception is thrown by catch block

Is This Answer Correct ?    4 Yes 4 No

Can we throw exception from catch Block?..

Answer / subbarao

i think answer is NO, because catch block is used to catch
the exceptions thrown

Is This Answer Correct ?    9 Yes 69 No

Post New Answer

More ASP.NET Interview Questions

Explain the life cycle of an ASP .NET page.

2 Answers  


How to retrieve data row by row from a DataTable? Thanks In advance PriyaPP

3 Answers  


If there is submit button in a from tell us the sequence what happens if submit is clicked and in form action is specified as some other page ?

1 Answers   MMTS,


How you can add an event handler?

0 Answers  


Define tracing.

0 Answers  






How we can set Different levels of Authentication in .Net? What are the difference between Windows Authenticatin, Passport Authentication and Form Authentication?

1 Answers  


I have one .Net application and i have two databases which is in SQL server2000 and one more database in ORACLE? how can i access the database from different Databases?

3 Answers   eXensys,


What is base class of .net?

0 Answers  


What is preprocessor in .net? Where it use?

0 Answers  


benefits of migration from asp to asp.net hi frnds, i have to give presentation to a client about how useful would be migrating their project from asp to asp.net .plz give me some points which i should incorporate in my ppt thanks

0 Answers  


Where do the cookie state and session state information be stored?

0 Answers  


What is the use of asp.net web api?

0 Answers  


Categories