In this code will someVar be set even if the catch block is executed and the second Exception is thrown?
someVar
public void someFunction() throws Excep
The finally block always executes when the try block exits.unless you've System.exit(0) in your try or catch.