What\'s the difference between
try { fooBar(); } finally { barFoo(); }
and
try { fooBar(); } catch(Throwable thro
In My reasearch Finally block is always executed and it is mainly "used for the any open connections to close" and to destroy something that is running unnecessarily.