On Wed, Aug 16, 2000 at 01:16:26AM -0600, Tony Olekshy wrote:

>     try { } finally { } catch { }

I don not see ht epoint of this ?

IMO, it should be simple.

  try { }
  catch Class { }
  catch { }
  finally { }

If try throws it is caught by the catch blocks

finally is always run

if any of the catch or finally throws, it is caught by a
try {} block up the stack.

Keep It Simple

Graham.

Reply via email to