1 2 3 4 5 6
package exceptions /** * Gets thrown if the syntax is wrong */ class SyntaxError(description: String, context: String) : Exception("Unexpected $description: $context")