5 lines
No EOL
156 B
Kotlin
5 lines
No EOL
156 B
Kotlin
package lexer
|
|
|
|
class Error(message: String, position: LexerPosition) : Exception("""
|
|
${position.line}:${position.column + 1}: $message
|
|
""".trimIndent()) |