A1001: Conditional else not allowed here

[ERROR]

Description

A second ELSE directive is detected in a conditional block.

Example
      IFEQ (defineConst)

    ...

      ELSE

    ...

      ELSE

    ...

      ENDIF

  
Tips

Remove the superfluous ELSE directive.

Example
      IFEQ (defineConst)

    ...

      ELSE

    ...

      ENDIF