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:
You can handle multiple types of exceptions through single try / catch loop. But take care of order in which you are going to handle exceptions. Order of catch exception block does matter.