Hacker News new | ask | show | jobs
by ColinDabritz 4450 days ago
Yes, as noted, it's a three part structure:

try { MayThrowException(); } catch(MyExceptionType ex) { HandleIfException(ex); } finally { AlwaysRunCleanupRegardless(); }