aboutsummaryrefslogtreecommitdiff
path: root/src/runMain/kotlin/exceptions/SyntaxError.kt
diff options
context:
space:
mode:
authorMarvin Borner2019-08-15 22:05:55 +0200
committerMarvin Borner2019-08-15 22:05:55 +0200
commitcc8c02d780f703e0ea547e79dacf6a571686e1df (patch)
tree9937b657405332abacc1eec580077041b9da5708 /src/runMain/kotlin/exceptions/SyntaxError.kt
parent49db23f1c8c3bf6c858eb75b70f9ffd0a839fb3c (diff)
Improved syntax analyser
Diffstat (limited to 'src/runMain/kotlin/exceptions/SyntaxError.kt')
-rw-r--r--src/runMain/kotlin/exceptions/SyntaxError.kt4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/runMain/kotlin/exceptions/SyntaxError.kt b/src/runMain/kotlin/exceptions/SyntaxError.kt
index 952187e..8609d38 100644
--- a/src/runMain/kotlin/exceptions/SyntaxError.kt
+++ b/src/runMain/kotlin/exceptions/SyntaxError.kt
@@ -1,8 +1,6 @@
package exceptions
-import Token
-
/**
* Gets thrown if the syntax is wrong
*/
-class SyntaxError(context: Token) : Exception("Unexpected ${context.type}: ${context.content}") \ No newline at end of file
+class SyntaxError(description: String, context: String) : Exception("Unexpected $description: $context") \ No newline at end of file