aboutsummaryrefslogtreecommitdiff
path: root/src/runMain/kotlin/exceptions/LexicalError.kt
blob: a891d3f6c4f379739ac27ca447673f3d521066b0 (plain) (blame)
1
2
3
4
5
6
package exceptions

/**
 * Gets thrown if the entered token/code does not exist in this language
 */
class LexicalError(token: String = "") : Exception("Token type not known: $token")