posted 24 years ago
I'm not sure if it was clearly stated above. However, the last line of code was only executed because the exception was caught`.
Had the exception not been handled, the finally block would have been executed, execution of the mothod would have ceased, and the exception would have been thrown to the calling method (assuming this method could throw this exception).