What\'s the difference between
try { fooBar(); } finally { barFoo(); }
and
try { fooBar(); } catch(Throwable thro
Finally block is always executed. Catch block is executed only when an exception that matches the blocks parameter is catched.