diff options
author | Marvin Borner | 2019-08-15 15:40:53 +0200 |
---|---|---|
committer | Marvin Borner | 2019-08-15 15:40:53 +0200 |
commit | 5707ecbabfe3b9b580fcc7b2ebdfef6a60786c40 (patch) | |
tree | 577f41b1acf49c28f4facbf0143d28bddfbe4361 /src/runMain/kotlin/exceptions/SyntaxError.kt | |
parent | 5f7cbd46cf7153b18f57fb8aaa59cd3136639208 (diff) |
Began basic syntax checking
Diffstat (limited to 'src/runMain/kotlin/exceptions/SyntaxError.kt')
-rw-r--r-- | src/runMain/kotlin/exceptions/SyntaxError.kt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/runMain/kotlin/exceptions/SyntaxError.kt b/src/runMain/kotlin/exceptions/SyntaxError.kt new file mode 100644 index 0000000..3fc2a69 --- /dev/null +++ b/src/runMain/kotlin/exceptions/SyntaxError.kt @@ -0,0 +1,6 @@ +package exceptions + +/** + * Gets thrown if the syntax is wrong + */ +class SyntaxError(context: String = "") : Exception("Syntax error: $context")
\ No newline at end of file |