Exception handlig article

  • Thread starter Thread starter ORC
  • Start date Start date
O

ORC

I'm looking for a good article that explains how exception handling should
be implemented in an application. It's not only the tecnical implementation
(try-catch-final thing) but a good general rule to follow I wanted. Are you
aware of one you would recommend?

Thanks,
Ole
 
Thanks Brian - there's a lot of stuff on net about exception handling and
therefore it is easy to get lost in some unneccesary readings - so thankyou
for showing me the track!

Thanks,
Ole
 
Now I have readen the articles and got an idea of how to use exception
handling. The next thing is that I would like to learn about is how the
overall exception handling should be done e.g. should the message to the
user be written at the source or in a central class that finally handles all
the exceptions (by using re-throw from class to class) from throughout the
application - also with internationalization in mind. Any good article on
that?

Thanks,
Ole
 
Ole,

I believe that the links that I have provided below will answer your
questions about internationalization, error handling, and best practices for
both. I haven’t really seen any good articles that cover these subjects
together but I think that if you read through these you will be able to
combine both aspects successfully.

I hope this helps!

-------------------


---Exception handling (look at the bottom for Localization
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnbda/html/exceptdotnet.asp

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnbda/html/emab-rm.asp?frame=true

---Internationalization/Localizatio
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/entloctoolkit.asp

http://msdn.microsoft.com/library/d...ide/html/cpcondesigningglobalapplications.asp

http://msdn.microsoft.com/library/d...onbestpracticesforglobalapplicationdesign.asp - Best Practices

http://msdn.microsoft.com/library/d.../dnsql2k/html/intlfeaturesinsqlserver2000.asp - Sql Server 2k
 
Thanks again - very useful information this time too!

Ole

Brian Brown said:
Ole,

I believe that the links that I have provided below will answer your
questions about internationalization, error handling, and best practices for
both. I haven't really seen any good articles that cover these subjects
together but I think that if you read through these you will be able to
combine both aspects successfully.

I hope this helps!

-------------------


---Exception handling (look at the bottom for Localization)
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnbda/html/exceptdotnet.asp
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnbda/html/emab-rm.asp?frame=true
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/entloctoolkit.asp
http://msdn.microsoft.com/library/d...ide/html/cpcondesigningglobalapplications.asp
http://msdn.microsoft.com/library/d...onbestpracticesforglobalapplicationdesign.asp -
Best Practiceshttp://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsql2k/html/intlfeaturesinsqlserver2000.asp - Sql Server 2k
 
Back
Top