TomlException

Base class of all exceptions that might be thrown during TOML processing.

Types

Link copied to clipboard
data class AccessError(val name: String, val tomlName: String, val cause: Throwable?) : TomlException

An access error occurred while encoding a Kotlin value into a TOML value. This exception should never be thrown under normal operation. If you see this happen, please file a bug report at github.com/valderman/4koma.

Link copied to clipboard

An error occurred while decoding a TOML value into some other Kotlin type.

Link copied to clipboard

An error occurred while encoding a Kotlin value into a TOML value.

Link copied to clipboard
data class ParseError(val errorDescription: String, val line: Int, val cause: Throwable?) : TomlException

An error occurred while parsing a TOML document.

Link copied to clipboard

An error occurred while serializing a TOML value.

Functions

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
open val message: String?

Inheritors

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard