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/LexicalError.kt (renamed from src/runMain/kotlin/exceptions/UnknownType.kt)2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runMain/kotlin/exceptions/UnknownType.kt b/src/runMain/kotlin/exceptions/LexicalError.kt
index a696891..a891d3f 100644
--- a/src/runMain/kotlin/exceptions/UnknownType.kt
+++ b/src/runMain/kotlin/exceptions/LexicalError.kt
@@ -3,4 +3,4 @@ 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
+class LexicalError(token: String = "") : Exception("Token type not known: $token") \ No newline at end of file