I've been playing a bit with the exception handlers in 1.8.0beta3, and
don't understand why I can't do the following:
try
<some code here>
except
<some exception>
finally
<Code to clean up in any case>
endtry
I can use either the EXCEPT or the FINALLY part in the try statement,
but can't use both.
TOm