Table of Contents

Class RpcError

Namespace
Thirdweb
Assembly
Thirdweb.dll

Represents an error returned from an RPC call.

public class RpcError
Inheritance
RpcError
Inherited Members

Properties

Code

Gets or sets the error code.

[JsonProperty("code")]
public int Code { get; set; }

Property Value

int

Data

Gets or sets additional data about the error.

[JsonProperty("data")]
public string Data { get; set; }

Property Value

string

Message

Gets or sets the error message.

[JsonProperty("message")]
public string Message { get; set; }

Property Value

string