Skip to main content

Interface: RpcResponseError<TErrorData>

When a rpc call encounters an error, the Response Object MUST contain the error member with a value that is that object

Type parameters

NameType
TErrorDataunknown

Properties

code

code: number

A Number that indicates the error type that occurred.

Defined in

packages/core/src/JSONRPC/types.ts:70


data

Optional data: TErrorData

A Primitive or Structured value that contains additional information about the error. The value of this member is defined by the Server (e.g. detailed error information, nested errors etc.).

Defined in

packages/core/src/JSONRPC/types.ts:80


message

message: string

A String providing a short description of the error.

Defined in

packages/core/src/JSONRPC/types.ts:74