mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-10-01 12:39:37 +00:00
7 lines
206 B
Kotlin
7 lines
206 B
Kotlin
package gay.pizza.pork.parser
|
|
|
|
open class ParseError(val error: String) : RuntimeException() {
|
|
override val message: String
|
|
get() = "${error}${ParserStackAnalysis(this).buildDescentPathAddendum()}"
|
|
}
|