プログラムに、プロパティまたはパラメーターの型が無効な属性が含まれています。
解決方法:
コードを修正してから再コンパイルします。
例:
次の例では、MyAttribute はパラメーター A を参照していますが、これも型として定義されています。
       attribute-id MyAttribute.
       01 Prop1 type A property.
       method-id new (parm1 as type A).
       end method.
       end attribute.
       class-id A attribute MyAttribute(new A).
       end class.