CdnException

class CdnException(message: String, val line: Int = 1, val column: Int = 1) : IllegalArgumentException

Exception thrown when parsing Concise Diagnostic Notation (CDN) fails.

Parameters

message

Description of the syntax error.

line

Line number in the CDN text where the error occurred (1-indexed).

column

Column number in the CDN text where the error occurred (1-indexed).

Constructors

Link copied to clipboard
constructor(message: String, line: Int = 1, column: Int = 1)

Properties

Link copied to clipboard
expect open val cause: Throwable?
Link copied to clipboard
val column: Int
Link copied to clipboard
val line: Int
Link copied to clipboard
expect open val message: String?