commonMain.maryk.lib.exceptions.ParseException.kt Maven / Gradle / Ivy
package maryk.lib.exceptions
/** Exception with [cause] for when parsing to value fails. */
class ParseException(
value: String,
cause: Throwable? = null
) : Error(
"Property value could not be parsed: $value",
cause
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy