aboutsummaryrefslogtreecommitdiff
path: root/src/runMain/kotlin/exceptions
diff options
context:
space:
mode:
authorMarvin Borner2019-08-15 00:25:25 +0200
committerMarvin Borner2019-08-15 00:25:25 +0200
commit0627e0ac4bd237f0d7d256f1cfe863440b318f55 (patch)
treee289bc92166ccd40a3da66238208687731a2bce5 /src/runMain/kotlin/exceptions
parent9ebc0391be2dcf54608518361eba78708bf6d26f (diff)
Added documentation
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