A single issue captured during PAT parsing.

interface AcDbPatParseIssue {
    line: number;
    message: string;
    source: string;
}

Properties

Properties

line: number

Line number where the issue occurred (1-based).

Implementations may use 0 when no exact line can be mapped.

message: string

Developer-facing error or warning message.

source: string

Raw source line text that triggered the issue.

Useful for debugging, logs, and UI error display.