To me it seemed clearer that "break" would be "avoid rethrow" rather then "continue"...
/ Mirar
Previous text:
2003-10-02 00:10: Subject: Re: throw or return
If you want to loop back to the try block again then I think you should put some loop statement around it all. I don't consider it entirely orthogonal to have that functionality directly in an error handling construct. Besides, a much better keyword for it would be "retry".
"Avoid rethrow" means to continue after the statement. The default is to throw the error again after executing the onerror clause (and the finally clause, if there is any).
/ Martin Stjernholm, Roxen IS