On Wednesday, 9 October 2013 at 16:51:11 UTC, Manu wrote:
> Exceptions have a pretty well defined lifetime... can't they be
> manually
> cleaned up by the exception handler after the catching scope
> exits?
static Exception askingForTrouble;
try { ... } catch(Exception e) {
askingForTrouble = e;
}