up vote 9 down vote favorite
7
share [g+] share [fb]

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.

link|improve this question

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 '09 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 '09 at 14:05
@Matt - but catch(Exception) is almost always bad. – TrueWill Sep 29 '09 at 1:31
1  
could you post your variations here? I'm intrestet in this topic too, but not in regex ;-) – Tokk Oct 19 '10 at 14:44
feedback

6 Answers

up vote 18 down vote accepted

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

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

FxCop will find them along with many other potential issues.

link|improve this answer
feedback

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

link|improve this answer
I haven't found where or how to this in ReSharper... how would you do it? – yeyeyerman Sep 28 '09 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 '09 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 '09 at 1:29
feedback

Further expanded the three solutions above to include clauses where the curly brackets aren't on the same line as the catch and where the catch clause contains only single line quotes:

catch:b*(\([^)]*\))*:b*[ \n\r\t]*\{:b*([ \n\r\t.]|(\/*[^]*\/)|(//.*$))*\}
link|improve this answer
+1 Thanks and wellcome to stackoverflow – Shiraz Bhaiji Jun 1 '11 at 14:11
feedback

Thanks to Stefan for the Regex suggestion. I found that the suggested regex does not find catch blocks where the exception is not specified, ie:

catch { }

I tweaked Stefan's slightly to make the exception brace optional:

catch:b*(\([^)]*\))*:b*\{:b*\}
link|improve this answer
feedback

Here is a regular expression that finds also catch blocks with only comments inside :

catch:b*\([^)]*\)[:b\n]*\{([:b\n]|(\/\*[^*]*\*\/)|(//[^\n]*))*\}
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.