COBCH1930 Feature only supported when compiling for JVM

When compiling for .NET managed code or native code, the code being compiled contains syntax for a feature that is supported only when compiling for JVM managed code.

Resolution:

Either remove the offending code or recompile for JVM managed code.

Example:

The following example shows the DEFAULT phrase used within an ENUM definition, which produces this error when compiled for other than JVM code:

       enum-id MyEnum.
       78 red value 1.
       78 yellow value 2.
       78 green value 3.
       78 black value 255 default.
       end enum.