From a8436fca98afea55c13218f500545adec9d333bb Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 26 Aug 2019 00:30:26 +0200 Subject: Added semantic error class --- src/runMain/kotlin/exceptions/SemanticError.kt | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/runMain/kotlin/exceptions/SemanticError.kt (limited to 'src/runMain/kotlin/exceptions') 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 -- cgit v1.2.3