I don’t know. continue would terminate any loop you were in, then you could have some kind of check to make sure execution of instructions ended -
for ( var n = 0 ; n < limit && ! GiveUp ; n++ ) {
if (unrecoverableErrorCondition) {
GiveUp = true;
continue;
}
}


