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