class TOML::ParseException
- TOML::ParseException
- Exception
- Reference
- Object
Overview
Raised on invalid TOML strings.
Defined in:
toml/parse_exception.crConstructors
-
.new(message, line_number : Int32, column_number : Int32)
Creates a ParseException with the given message, line number and column number.
Instance Method Summary
-
#column_number : Int32
The column number where the invalid TOML was detected.
-
#line_number : Int32
The line number where the invalid TOML was detected.
Constructor Detail
def self.new(message, line_number : Int32, column_number : Int32)
#
Creates a ParseException with the given message, line number and column number.