Type Alias: APIErrorResponse
APIErrorResponse = {
error:string;message:string; }
Defined in: api/types.ts:26
API error response structure from CCIP API. Returned when API requests fail with 4xx/5xx status codes.
Properties
error
error:
string
Defined in: api/types.ts:28
Machine-readable error code (e.g., "LANE_NOT_FOUND", "INVALID_PARAMETERS")
message
message:
string
Defined in: api/types.ts:30
Human-readable error message with details