Interface DBlurtErrorMetadata

Machine-readable error classification used by dblurt error helpers.

interface DBlurtErrorMetadata {
    category: DBlurtErrorCategory;
    cause_code?: string;
    cause_message?: string;
    cause_name?: string;
    code: DBlurtErrorCode;
    field?: string;
    path?: (string | number)[];
    retryable: boolean;
    rpc_code?: number;
    rpc_data?: any;
}

Properties

cause_code?: string
cause_message?: string
cause_name?: string
field?: string
path?: (string | number)[]
retryable: boolean
rpc_code?: number
rpc_data?: any