UNPKG

@vechain/sdk-errors

Version:

This module is dedicated to managing and customizing errors within the VeChain SDK

15 lines (13 loc) 282 B
/** * Default Object error data type. it accepts any object. */ type ObjectErrorData = Record<string, unknown>; type JSONRpcErrorCode = | -32700 | -32600 | -32601 | -32602 | -32603 | -32000 | -32004; export type { ObjectErrorData, JSONRpcErrorCode };