In PHP, JS and others, finally {} is there to be executed after try/catch, irrespective of an exception thrown or not. But isn't that just the function of all code after try/catch?
The two snippets should behave exactly the same:
try {
throwException();
} catch () {
} finally () {
executeMe();
}
and
try {
throwException();
} catch () {
}
executeMe();