diff options
Diffstat (limited to 'src/runMain/kotlin/Semantic.kt')
-rw-r--r-- | src/runMain/kotlin/Semantic.kt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/runMain/kotlin/Semantic.kt b/src/runMain/kotlin/Semantic.kt index b903f84..dc835d3 100644 --- a/src/runMain/kotlin/Semantic.kt +++ b/src/runMain/kotlin/Semantic.kt @@ -1,4 +1,5 @@ import TokenType.* +import exceptions.* class Semantic { /** @@ -16,7 +17,7 @@ class Semantic { for (token in statement) { if (token.type == Variable && token.content !in variables) { - throw Exception("Undeclared variable") + throw SemanticError("Undeclared variable", token.content) } } } |