Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

Difference between type constructor and instance constructor? What is static constructor, when it will be fired? And what is its use?

1003


What does char mean in c#?

878


How do you prevent a class from being inherited?

865


what is the difference between convert.tostring() and tostring() functions ?

987


What is difference between ienumerable and enumerable in c#?

852


What is list array in c#?

815


How many parameters can a method have c#?

866


How do I automate my desktop application?

947


Is lazy t thread safe?

896


What is the signature of a method?

871


Can you have more than one namespace in c#?

878


Is concurrent queue thread safe?

850


How can I create image pieces/sub image?

879


What is delegates in c#?

848


What is a variable in c#?

860