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...


Why is it a bad idea to throw your own exceptions?

Answers were Sorted based on User's Feedback



Why is it a bad idea to throw your own exceptions?..

Answer / supratim sengupta

Actually throwing your own exceptions is an excellent way
to handle various exceptions the way you want it to handle.
You can centralize the whole exception handling. It could
be useful in product development where you might miss out
some exception conditions and then you can always write a
common custom exception handler that can shoot you an email
with all the details of the exception.

Is This Answer Correct ?    8 Yes 1 No

Why is it a bad idea to throw your own exceptions?..

Answer / guest

Not necessarily. If you're writing a library of code to be
used by other clients you don't always know the right thing
to do if an exceptional problem comes up. So it isn't always
a bad idea to throw your own exceptions.

Is This Answer Correct ?    5 Yes 2 No

Why is it a bad idea to throw your own exceptions?..

Answer / guest

Well, if at that point you know that an error has occurred,
then why not write the proper code to handle that error
instead of passing a new Exception object to the catch
block? Throwing your own exceptions signifies some design
flaws in the project.

Is This Answer Correct ?    3 Yes 1 No

Why is it a bad idea to throw your own exceptions?..

Answer / japan shha

Perhaps what you meant to ask was "When is it not necessarily a good idea to throw my own exception?"

http://stackoverflow.com/questions/2215112/why-is-it-a-bad-idea-to-throw-your-own-exceptions

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

How do you sort a list in c#?

0 Answers  


What is difference between variable and property in c#?

0 Answers  


i have a question which is quite simple but yet complicated for me my question is why do we use void, if it does not return anything to the compiler? if it is used for normal display it can also be done by what is called Console.Write() or Consol.WriteLine() and if i do not use void with my method then my compiler throws me an error. if i return a value say integer then i write public int fun() display of the result can also be done here then why is it so necessary to use void with a function and why so compiler throw us an error if v don't use void return type?

2 Answers  


What is the difference between dispose() and finalize() methods in c#?

0 Answers  


What are the access allowed for compilation units(namespace),class and structs and what are its default access?

1 Answers   TCS,


What is ENUM?

10 Answers   TCS, Wipro, YeshTech,


What is difference between override and new in c#?

0 Answers  


Can a string be null c#?

0 Answers  


What does the initial catalog parameter define in the connection string?

0 Answers  


What is int parse in c#?

0 Answers  


What are the 2 kinds of data type conversions in c#?

0 Answers  


What is multicast delegate explain with example?

0 Answers  


Categories