nexus-rpc
    Preparing search index...

    Interface HandlerErrorOptionsExperimental

    Options for constructing a HandlerError.

    interface HandlerErrorOptions {
        cause?: unknown;
        retryableOverride?: boolean;
    }
    Index

    Properties

    cause?: unknown

    Underlying cause of the error.

    retryableOverride?: boolean

    Whether this error should be considered retryable.

    If not set, the retry behavior is determined from the error type. For example, by default, INTERNAL is retryable, but UNAVAILABLE is non-retryable.