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 |
Tell About Web.config ?
What is binding in web service ?
Explain the scenario where we go for inpro and outpro session?
Explain global assembly cache.
When would you set this property to false?
explain code with datachaching with example
What are asynchronous callbacks ?
6 Answers Accenture, BirlaSoft,
What is postback pixel?
What is the difference between Trace and Debug?
Do you know about caching with the datasource controls?
How do you relate an aspx page with its code behind Page?
What is the difference between dynamic SGA and static SGA?