package exceptions /** * Gets thrown if the syntax is wrong */ class SyntaxError(description: String, context: String, lineNumber: Int) : Exception("Unexpected $description at line $lineNumber: $context")