diff options
Diffstat (limited to 'src/runMain/kotlin/exceptions')
-rw-r--r-- | src/runMain/kotlin/exceptions/UnknownType.kt | 3 |
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 |