commonMain.com.copperleaf.kudzu.parser.ParserException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kudzu-core-js Show documentation
Show all versions of kudzu-core-js Show documentation
A monadic (I think...) recursive-descent parser written in Kotlin
package com.copperleaf.kudzu.parser
/**
* Indicates an unrecoverable error was encountered during parsing.
*/
@ExperimentalStdlibApi
class ParserException(
message: String,
val parser: Parser<*>,
val input: ParserContext
) : Exception("Parse error: $message (${parser::class.simpleName} at ${input.sourcePosition})")
© 2015 - 2025 Weber Informatics LLC | Privacy Policy