up vote 11 down vote favorite
4
share [g+] share [fb]

Java requires that you catch all possible exceptions or declare them as thrown in the method signature. This isn't the case with C# but I still feel that it is a good practice to catch all exceptions. Does anybody know of a tool which can process a C# project and point out places where an exception is thrown but not caught?

link|improve this question

79% accept rate
4  
Why would you want to catch all exceptions? Unless you can do something to either correct the problem or you are logging it (in which case you would re-throw it afterwards), you should let exceptions bubble up to the point in code where they can be taken care of. – Jason Bunting Oct 24 '08 at 2:42
That said, I do think such a tool would be useful, but not for the exact same purpose you mention. – Jason Bunting Oct 24 '08 at 2:43
Well that is just it, I have no idea what exceptions might bubble up. I could catch Exception but what am I going to do with that? Being explicit about exceptions makes you think more about what you're writing and where it could go wrong. – stimms Oct 24 '08 at 2:47
feedback

5 Answers

up vote 7 down vote accepted

Check out the ExceptionFinder plug-in by Jason Bock for the .NET Reflector. It does just what you are looking for. Here's a screeny:

.NET Reflector

Check it out on CodePlex

link|improve this answer
The link is broken. – André Caron Nov 1 '11 at 16:19
feedback

Red-Gate software has a product called Exception Hunter which should do that.

link|improve this answer
feedback

There is a R# plug-in that analyses thrown exceptions. http://exceptionalplugin.codeplex.com/

link|improve this answer
feedback

If you are using C# for a web application then you can use ELMAH which shows a list of all the handled and unhandled exceptions.

Just download ELMAH and plug it in. It is FREE!

link|improve this answer
feedback

Don't catch them in individual methods, unless you need to, setup a global handler.

Application.ThreadException += new ThreadExceptionEventHandler( Application_ThreadException );

private static void Application_ThreadException( object sender, ThreadExceptionEventArgs e)
{ 
       dispatchException( e.Exception );
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.