A11 TypeScript API - v0.2.1
    Preparing search index...

    Interface NotFoundError

    Failure indicating that a requested action, node, or resource is absent.

    interface NotFoundError {
        cause?: unknown;
        code: NOT_FOUND;
        details?: object[];
        message: string;
    }

    Hierarchy (View Summary)

    Index
    cause?: unknown

    Local exception/diagnostic cause; omitted at serialized boundaries.

    code: NOT_FOUND

    Machine-readable portable outcome.

    details?: object[]

    Structured, serializable application or validation context.

    message: string

    Concise description suitable for logs and user-facing diagnostics.