mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-10-01 12:39:37 +00:00
6 lines
155 B
Kotlin
6 lines
155 B
Kotlin
package gay.pizza.pork.parser
|
|
|
|
class UnterminatedTokenError(what: String, sourceIndex: SourceIndex) : ParseError(
|
|
"Unterminated $what at $sourceIndex"
|
|
)
|