package exceptions import TokenType /** * Gets thrown if the syntax is wrong */ class SyntaxError(context: Pair) : Exception("Unexpected ${context.second}: ${context.first}")