I'm been reviewing some production code, and it seems there are a lot of Try/Catches, with some logic in the Try, but an empty Catch.
Is this a normal practice?
Could you not just use an If statement?
It seems odd to use the Try/Catch if you're not going to Catch anything.