Can we throw exception from catch block ?
Answers were Sorted based on User's Feedback
Answer / nilesh
Yes. A throw statement can be used in the catch block to re-
throw the exception, which has been caught by the catch
statement. For example:
catch (InvalidCastException e)
{
throw (e); // Rethrowing exception e
}
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / arjun
The exceptions, which we caught inside a catch block, can
re-throw to a higher context by using the keyword throw
inside the catch block. The following program shows how to
do this.
//C#: Exception Handling: Handling all exceptions
using System;
class MyClass
{
public void Method()
{
try
{
int x = 0;
int sum = 100/x;
}
catch(DivideByZeroException e)
{
throw;
}
}
}
class MyClient
{
public static void Main()
{
MyClass mc = new MyClass();
try
{
mc.Method();
}
catch(Exception e)
{
Console.WriteLine("Exception caught here" );
}
Console.WriteLine("LAST STATEMENT");
}
}
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / vamshi krishna
Try
{
//Implemented code
}
catch(ex)
{
alert(ex.message)
}
| Is This Answer Correct ? | 1 Yes | 4 No |
What is shadowing?
How would you turn off cookies on one page of your website?
what is Disco?what it will do?
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?
What is ispostback method in asp.net?
What is difference between singleton and single call?
how can you bind data from dataset to XML file
What asp.net control can embed xaml into asp.net pages?
About delegates ?
What are the server controls in asp.net?
What is the purpose of each of the validation controls provided by ASP.NET?
How do you get records number from 5 to 15 from a dataset of 100 records?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)