I have a try...catch...finally block whose catch rethrows the exception:
try
{
startBombCountdownAndRunAsFastAsYouCan();
}
catch (BombExplodedOnYourFaceException ex)
{
displayMessage("Hahaha! It blew up on your face!");
throw ex;
}
finally
{
cleanFloor();
}
displayMessage("Wow, you pulled it off!");
In this example, I need that cleanFloor() be executed regardless of whether the exception was thrown or not. So the question is: Is the finally clause always executed, regardless of whether the exception is rethrown in the corresponding catch clause?