Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
You attempted to use the continue statement outside of a loop. The continue statement can be used only within the body of a:
do-while
loop,while
loop,for loop,
for/in loop.
To correct this error
Make sure the continue statement appears within the body of a:
do-while
loop,while
loop,for loop,
for/in loop.
See also
continue Statement
Controlling Program Flow
Troubleshooting Your Scripts