COBCH1833 Cannot have instance of STATIC class, or FINAL class without constructor

The program declares an instance of a static class, or of a final class that has no constructor. This is not allowed.

Resolution:

Correct the code; then recompile.

Example:

In the following example, static class A has no constructor.

       class-id a static.
       method-id main static.
           declare o as type a = null
       end method.
       end class.