Pilates
    Preparing search index...

    Interface PilatesErrorJSON

    Shape of PilatesError.toJSON(). Sentry's ExtraErrorData integration looks for toJSON() and uses its return value when present.

    interface PilatesErrorJSON {
        cause: unknown;
        code: PilatesErrorCode;
        componentStack: string | undefined;
        hint: string | undefined;
        message: string;
        meta: Record<string, unknown> | undefined;
        name: string;
        ownerStack: string | undefined;
        stack: string | undefined;
    }
    Index

    Properties

    cause: unknown
    componentStack: string | undefined
    hint: string | undefined
    message: string
    meta: Record<string, unknown> | undefined
    name: string
    ownerStack: string | undefined
    stack: string | undefined