diff options
author | Marvin Borner | 2019-08-15 22:49:57 +0200 |
---|---|---|
committer | Marvin Borner | 2019-08-15 22:49:57 +0200 |
commit | c4f53cfabe7efc987916d3a7a40e81cb85ae9193 (patch) | |
tree | 44b5eb0177bde3aebf9fe4b0733cb8c37bd56bd5 /src/runMain/kotlin/exceptions | |
parent | cc8c02d780f703e0ea547e79dacf6a571686e1df (diff) |
Added linenumber logging
Diffstat (limited to 'src/runMain/kotlin/exceptions')
-rw-r--r-- | src/runMain/kotlin/exceptions/SyntaxError.kt | 3 |
1 files changed, 2 insertions, 1 deletions
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 |