Coda by Ian Macalinao
    Preparing search index...

    Interface ErrorNode

    A program error — a numeric code paired with a name and human-readable message.

    interface ErrorNode {
        code: number;
        docs?: Docs;
        kind: "errorNode";
        message: string;
        name: CamelCaseString;
    }
    Index
    code: number

    The numeric error code returned by the program.

    docs?: Docs

    Markdown documentation for the error.

    kind: "errorNode"
    message: string

    A human-readable description of the error.

    The name of the error.