KthIllegalTokenException

class KthIllegalTokenException(val token: String, val position: Int) : KthParsingException

Thrown during tokenization if the input string contains an illegal token.

Constructors

Link copied to clipboard
constructor(token: String, position: Int)

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
open val message: String?
Link copied to clipboard

The position of the illegal token.

Link copied to clipboard

The illegal token.