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.