Tell me something about Exceptions. What is the common
exception class?
Answer Posted / tiger kumar
Exception is used to handle the errors during the runtime of
the process.It has the three parts.Try,Catch,Finally.The try
is the part of the set of code.Whenever the errors occur in
the Try block it comeout from the try block and the catch
block handles exception class the error.
Finally is little differ from the catch.Because Finally is
must executable part whether it has error or not.
Mostly which is used for close the objects.
try
{
int i =10;
int sum =i/0;
Response.Write("sum is:"+sum);
}
catch(Exception oEx)
{
Response.Write("Error:"+oEx.ToString());
}
catch(DivideByZeroException oEx1)
{
Response.Write("Error:"+oEx1.ToString());
}
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is difference between comparable and comparator?
What is uint c#?
What are the Features in .net framework 1.1
Why do we use public static void main in c#?
Explanation on Generic?
Explain manifest & metadata in c#.
What is difference between value and reference types in C#.NET
C# called c sharp why?
What are the 2 broad classifications of fields in c#?
Why delegates are type safe?
Why do we use delegates in c#?
You are designing a user control. You created new property called backgroundimage which is of type image. You wanted to disable storing this property in the user’s form. How to achieve this?
What are the new features in c# 2.0?
What is strong name assembly?
What is the difference between dataset and datatable in c#?