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")