klyn.io.toml.TOMLParseException.TOMLParseException
constructor
public TOMLParseException(message as String, line as Int = 1, column as Int = 1):
Description

Creates a TOML syntax error.

Parameters
ParameterDescription
messageDescription of the invalid construct.
lineOne-based source line.
columnOne-based source column.
Example
error = TOMLParseException("Expected a value", 3, 8)
assert error.line == 3