Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Error

import type { Error } from "https://googleapis.deno.dev/v1/workflowexecutions:v1.ts";

Error describes why the execution was abnormally terminated.

interface Error {
context?: string;
payload?: string;
stackTrace?: StackTrace;
}

§Properties

§
context?: string
[src]

Human-readable stack trace string.

§
payload?: string
[src]

Error message and data returned represented as a JSON string.

§
stackTrace?: StackTrace
[src]

Stack trace with detailed information of where error was generated.