Product Information > JADE Error Messages and System Messages > 6000 through 6999 - JADE Compiler Errors > 6053 - Label mismatch

6053   Label mismatch

Cause

This error occurs if the label name at the start of an iteration loop does not match the label at the end.

When you specify a label at the beginning of an iteration loop, the label name can be restated at the end of the loop. This is primarily for documentation and readability purposes, and does not affect the execution of the loop. However, the compiler checks that the label specified at the start of the loop matches the label at the end of the loop, and this error results if the two do not match.

Action

Change your application code to delete the label at the end of the loop, or correct it to match the label at the start of the loop.