0
It's true that a try block does not need a catch block if there's a finally block there, but if the try block throws another exception then the finally block of that throwing try block will not be executed, since the JVM will look for the implementation of that exception and keep going from there.