From c4f53cfabe7efc987916d3a7a40e81cb85ae9193 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 15 Aug 2019 22:49:57 +0200 Subject: Added linenumber logging --- src/runMain/kotlin/exceptions/SyntaxError.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/runMain/kotlin/exceptions') diff --git a/src/runMain/kotlin/exceptions/SyntaxError.kt b/src/runMain/kotlin/exceptions/SyntaxError.kt index 8609d38..b5ad163 100644 --- a/src/runMain/kotlin/exceptions/SyntaxError.kt +++ b/src/runMain/kotlin/exceptions/SyntaxError.kt @@ -3,4 +3,5 @@ package exceptions /** * Gets thrown if the syntax is wrong */ -class SyntaxError(description: String, context: String) : Exception("Unexpected $description: $context") \ No newline at end of file +class SyntaxError(description: String, context: String, lineNumber: Int) + : Exception("Unexpected $description at line $lineNumber: $context") \ No newline at end of file -- cgit v1.2.3