Should I put multiple statements in a try and then catch all possible exceptions, or should I put only one statement in the try statement?
Example:
In accordance with what jldupont says, I try to always separate my potential risk statements into multiple try/catch blocks. That way when something goes wrong, you know exactly where it was and you can have specific error messages for each problem.