diff options
Diffstat (limited to 'src/runMain/kotlin/exceptions/SemanticError.kt')
-rw-r--r-- | src/runMain/kotlin/exceptions/SemanticError.kt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/runMain/kotlin/exceptions/SemanticError.kt b/src/runMain/kotlin/exceptions/SemanticError.kt new file mode 100644 index 0000000..f198755 --- /dev/null +++ b/src/runMain/kotlin/exceptions/SemanticError.kt @@ -0,0 +1,6 @@ +package exceptions + +/** + * Gets thrown if the entered token/code has semantic errors + */ +class SemanticError(type: String = "", token: String = "") : Exception("$type: $token")
\ No newline at end of file |