klyn.ValueError.ValueError
constructor
public ValueError(message as String = "Invalid value"):
Description

Creates a value error.

Parameters
  • message Description of the invalid value. ``` error = ValueError("shape dimensions must be > 0") println(error.message) ```