kkrpc
    Preparing search index...

    Interface RPCError

    Serialized error shape sent in failed RPC responses.

    interface RPCError {
        m: string;
        n: string;
        s?: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown

      Additional enumerable error fields preserved from the thrown value.

    Index

    Properties

    m n s?

    Properties

    m: string

    Error message.

    n: string

    Error name, such as Error or TypeError.

    s?: string

    Optional stack trace when available.