Type Alias: JobErrorRequest
type JobErrorRequest = object;
Properties
errorCode
errorCode: string;
The error code that will be matched with an error catch event.
errorMessage?
optional errorMessage?: string | null;
An error message that provides additional context.
variables?
optional variables?:
| {
[key: string]: unknown;
}
| null;
JSON object that will instantiate the variables at the local scope of the error catch event that catches the thrown error.