package exceptions /** * Gets thrown if the entered token/code has semantic errors */ class SemanticError(type: String = "", token: String = "") : Exception("$type: $token")