I was designing an Activity today and I came across an issue by which rethrowing an exception within the Catch of a TryCatch block does not execute the Finally which is also associated with it. Upon further investigation I came across the following
Can anyone explain to me what the use of the finally block is in this activity if it is not guaranteed to execute?
The only case I can see is if you have nested try blocks.