Product Information > JADE Error Messages and System Messages > 6000 through 6999 - JADE Compiler Errors > 6055 - Nothing to break or continue

6055   Nothing to break or continue

Cause

This error occurs if your application code contains a break or continue instruction outside all loops.

A break or continue instruction dictates that the current iteration loop should be aborted or continued and therefore must always appear within a loop.

Action

Change your application code to remove the break or continue instruction, or implement an enclosing iteration loop.