COBCH1714 '<クラス名>' には n 個のパラメータのある可視コンストラクタがない

指定された型には、指定のパラメータ数のコンストラクタがありません。

次の例では、型axel には 1 つのパラメータを持つコンストラクタが含まれていません。パラメータを持たないデフォルトのコンストラクタのみが含まれています。

class-id axel.
method-id main.
  declare a-size as string
  declare obj as type axel
  set obj to new axel(a-size)
end method.
end class.