@edgible-team/sdk
    Preparing search index...

    Interface EdgibleErrorOptions

    Constructor options shared by every EdgibleError subclass.

    interface EdgibleErrorOptions {
        cause?: unknown;
        code: EdgibleErrorCode;
        details?: unknown;
        requestId?: string;
        statusCode?: number;
    }
    Index

    Properties

    cause?: unknown

    The original error, preserved for diagnostics.

    Stable machine-readable code consumers branch on (never message text).

    details?: unknown

    Structured context, e.g. per-field validation failures.

    requestId?: string

    Backend trace ID (x-request-id) for support and log correlation.

    statusCode?: number

    HTTP status of the failing response, when one was received.