Toml Exception
Base class of all exceptions that might be thrown during TOML processing.
Types
Link copied to clipboard
data class DecodingError( val reason: String?, val sourceValue: TomlValue, val targetType: KType, val cause: Throwable?) : TomlException
Content copied to clipboard
An error occurred while decoding a TOML value into some other Kotlin type.
Link copied to clipboard
data class EncodingError(val sourceValue: Any?, val cause: Throwable?) : TomlException
Content 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
Content copied to clipboard
An error occurred while parsing a TOML document.
Link copied to clipboard
data class SerializationError(val message: String, val cause: Throwable?) : TomlException
Content 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