I\'m reviewing some new code. The program has a try and a finally block only. Since the catch block is excluded, how does the try block work if it encounters an exception
Regardless of exception thrown or not in try block - finally block will be executed. Exception would not be caught.
try
finally