aboutsummaryrefslogtreecommitdiff
path: root/src/runMain/kotlin/exceptions
diff options
context:
space:
mode:
authorMarvin Borner2019-08-26 00:30:26 +0200
committerMarvin Borner2019-08-26 00:30:26 +0200
commita8436fca98afea55c13218f500545adec9d333bb (patch)
tree291dd120b40933286af9aab754d371f1bb3b0845 /src/runMain/kotlin/exceptions
parentd9f3c4329e8cf4de1435c6390a44f3a8399cfd3d (diff)
Added semantic error class
Diffstat (limited to 'src/runMain/kotlin/exceptions')
-rw-r--r--src/runMain/kotlin/exceptions/SemanticError.kt6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/runMain/kotlin/exceptions/SemanticError.kt b/src/runMain/kotlin/exceptions/SemanticError.kt
new file mode 100644
index 0000000..f198755
--- /dev/null
+++ b/src/runMain/kotlin/exceptions/SemanticError.kt
@@ -0,0 +1,6 @@
+package exceptions
+
+/**
+ * Gets thrown if the entered token/code has semantic errors
+ */
+class SemanticError(type: String = "", token: String = "") : Exception("$type: $token") \ No newline at end of file