Tell me something about Exceptions. What is the common
exception class?
Answers were Sorted based on User's Feedback
Answer / nitin
Exception is error which is generally Generated by the
Application during at runtime.
System.Exception is the common exception class
| Is This Answer Correct ? | 4 Yes | 0 No |
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 |
Answer / vinoth
Exception is one that occurs in runtime.The general
exception class is Exception.This class is the base of
every exception.This class is able to catch all types of
exception.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / karthick
An excepion is an erroneous situation that occurs during
program execution.The error is handled through the process
of exception handling.All excetions are derived from the
System.Exception class,which is the parent class of all
exception.
| Is This Answer Correct ? | 1 Yes | 1 No |
How are Windows programs different from normal C-programs?
How do you create multiple inheritance in C#?
5 Answers Infosys, KenIndia, Microsoft,
Why we use anonymous methods in c#?
What is the difference between parse and tryparse in c#?
Explain how do you debug an asp.net web application?
what is Anonymous Method.? and What is shadowing?
What does out mean in c#?
What is _viewstart cshtml?
What's new in c#?
explain the features of static/shared classes.
What is a clr host?
Does c# support multiple class inheritance?
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)