Possible Duplicate:
.NET Global exception handler in console application
I've read a lot of things about global exception handling on stackoverflow, but I could not find anything refering to my topic properly. I wrote a console application that catches exceptions just in the methods they occur. No throw's at all. What I want to have is a global exception handling. I no the basic guidlines about exception handling, but got no idea beyond those basics. Imaginary there should be one class handling those exceptions (thrown by the methods from the different classes). I don't need any error-recording or error-reporting mechanisms yet. Just need the basics (patterns whatever...) to implement this global handling. Thanks for reading so far!