diff options
author | Marvin Borner | 2019-08-17 18:46:00 +0200 |
---|---|---|
committer | Marvin Borner | 2019-08-17 18:46:00 +0200 |
commit | 777c20de7791fd254ce747f7d7ab4b681c5a6001 (patch) | |
tree | 285672ccb4a147199b4c243bd5f6117a7759e7e0 /src/runMain/kotlin/exceptions/LexicalError.kt | |
parent | 266b4b26bb643190bcf87753dcbcf6bb6800a1bd (diff) |
Renaming and semantic testing
Diffstat (limited to 'src/runMain/kotlin/exceptions/LexicalError.kt')
-rw-r--r-- | src/runMain/kotlin/exceptions/LexicalError.kt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/runMain/kotlin/exceptions/LexicalError.kt b/src/runMain/kotlin/exceptions/LexicalError.kt new file mode 100644 index 0000000..a891d3f --- /dev/null +++ b/src/runMain/kotlin/exceptions/LexicalError.kt @@ -0,0 +1,6 @@ +package exceptions + +/** + * Gets thrown if the entered token/code does not exist in this language + */ +class LexicalError(token: String = "") : Exception("Token type not known: $token")
\ No newline at end of file |