vote up 7 vote down star
2

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?

flag

79% accept rate
1  
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

5 Answers

vote up 3 vote down check

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|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 2 vote down

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

link|flag

Your Answer

Get an OpenID
or

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