vote up 6 vote down star
3

I am reviewing some code.

I have notice some empty catch blocks. Not a good idea since somethings do not work and you cannot see why.

Is there an easy way to find all empty try catch blocks in a solution?

EDIT

Thanks for all the answers.

Used the example given by Stefan. Had to do a few variations, there are many ways of writing empty catch blocks. Also a simple search for catch (Exception) found several errors.

flag

Just an FYI - not all empty catch blocks are bad. Sometimes, the developer is catching for a specific exception precisely so that the exception can be ignored. – Matt Hamsmith Sep 28 at 13:35
@Matt, Thanks, agree with you, but then we have a rule that the developer must put a comment in to confirm that it is done with intent. – Shiraz Bhaiji Sep 28 at 14:05
@Matt - but catch(Exception) is almost always bad. – TrueWill Sep 29 at 1:31

3 Answers

vote up 14 vote down check

Use use the global find dialog, turn on regular expressions and then search for:

catch:b*\([^)]*\):b*\{:b*\}
link|flag
Thanks, that is a real time saver – Shiraz Bhaiji Sep 28 at 11:44
FxCop or ReSharper would be overkill for just empty try/catch, good thinking! – jrummell Sep 28 at 17:40
vote up 7 vote down

FxCop will find them along with many other potential issues.

link|flag
vote up 5 vote down

Do you have ReSharper? This should hilight the issues found in code.

link|flag
I haven't found where or how to this in ReSharper... how would you do it? – yeyeyerman Sep 28 at 11:05
It shows up as a warning with ReSharper, but I think you have to have the code file open to see it. – jrummell Sep 28 at 12:31
Oddly enough, I found one of these in some code the other day. We use both FxCop and ReSharper; someone had explicitly suppressed the FxCop warning (so it didn't show up on the Continuous Integration build) and ignored the ReSharper one. Not much you can do about that. :P – TrueWill Sep 29 at 1:29

Your Answer

Get an OpenID
or

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