It is a stupid thing to do so it should not matter.
And the answer is "not much".
All the try try itself does is add an exception entry in the method description for the class. The VM uses that to do a look up when an exception occurs so it knows where to jump.
The catch (end of try block) induces byte codes which jump around the code in the catch block. So every line would have a goto in it (presuming, I believe, a non-empty catch block.)
The catch block itself can have code. So if you put something in there then that code would be added as well. That could have an impact.