ParsingException

class ParsingException(val token: Token<*>, message: String?, cause: Throwable? = null) : Exception

Exception type for parsing errors containing a reference to the current token.

Constructors

Link copied to clipboard
constructor(token: Token<*>, message: String?, cause: Throwable? = null)

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
open val message: String?
Link copied to clipboard
val token: Token<*>

Functions

Link copied to clipboard
open override fun toString(): String