Parser Exception
class ParserException(val line: Int? = null, val column: Int? = null, val tokensConsumed: Int = 0, val rule: Rule<*>? = null, val element: PatternElement? = null, message: String, cause: Throwable? = null) : Exception
Exception thrown when parsing fails.
Properties
Link copied to clipboard
The column number where parsing failed
Link copied to clipboard
The PatternElement that failed to match (if applicable)
Link copied to clipboard
The line number where parsing failed
Link copied to clipboard
The number of tokens consumed before the failure