This repository has been archived on 2025-09-23. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
2025LogProg-project-GhentPr.../src/lexer/Error.kt

5 lines
No EOL
156 B
Kotlin

package lexer
class Error(message: String, position: LexerPosition) : Exception("""
${position.line}:${position.column + 1}: $message
""".trimIndent())