aboutsummaryrefslogtreecommitdiff
path: root/src/runMain/kotlin/exceptions
diff options
context:
space:
mode:
Diffstat (limited to 'src/runMain/kotlin/exceptions')
-rw-r--r--src/runMain/kotlin/exceptions/UnknownType.kt3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/runMain/kotlin/exceptions/UnknownType.kt b/src/runMain/kotlin/exceptions/UnknownType.kt
index 4c348a5..a696891 100644
--- a/src/runMain/kotlin/exceptions/UnknownType.kt
+++ b/src/runMain/kotlin/exceptions/UnknownType.kt
@@ -1,3 +1,6 @@
package exceptions
+/**
+ * Gets thrown if the entered token/code does not exist in this language
+ */
class UnknownType(token: String = "") : Exception("Token type not known: $token") \ No newline at end of file