COBCH1725 class-name has no visible constructor

The specified class has no visible constructor. This message is generated when the specified class is static.

Example:

In the following example, no constructor is defined.

       class-id a.
       method-id main static.
           display new b
       end method.
       end class.
       class-id b static.
       end class.