Whoops! I misunderstood the question
In what scenario does the statement after finally is not executed.
I thought "In what scenario does the statement
in finally is not executed." Sorry
Okay, the statement
after finally is not executed when:
(1) When your method returns inside a try, catch or finally block without thrrowing an exception, as we've done, and,
(2) when an exception is thrown inside a try, catch or finally block without being caught, and it propagates outwards.
-anthony
[ April 01, 2002: Message edited by: Anthony Villanueva ]