Skip to content

Type Alias: ExecuteError

type ExecuteError = {
  description?: string;
  stage: "simulate" | "submit" | "execute";
  status: SubmitterErrorStatus;
};

Defined in: apps/submitter/lib/handlers/execute/types.ts:60

Output of execute calls that fail for other reasons.

Properties

description?

optional description: string;

Defined in: apps/submitter/lib/handlers/execute/types.ts:67

Description of the problem.


stage

stage: "simulate" | "submit" | "execute";

Defined in: apps/submitter/lib/handlers/execute/types.ts:64

Whether the error occurred at the simulation stage or at the submit stage.


status

status: SubmitterErrorStatus;

Defined in: apps/submitter/lib/handlers/execute/types.ts:61