2013/4/27 Ferenc Kovacs <[email protected]>
> please don't reuse the continue keyword for it.
>
> There are a bunch of code out there where which uses exceptions in a loop
> context.
> For example you have a retry counter decremented in a loop and you catch
> the exceptions and retry until the retry limit is reached.
>
Fair enough. We can use "resume".
try {
doThis();
doThat();
} catch (NotImportantException $nie) {
addToLog($nie->getMessage());
resume;
} catch (Exception $e) {
cleanupEverything();
}