package exceptions import Token /** * Gets thrown if the syntax is wrong */ class SyntaxError(context: Token) : Exception("Unexpected ${context.type}: ${context.content}")