diff options
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 |