@camunda8/orchestration-cluster-api
    Preparing search index...

    Type Alias JobErrorRequest

    type JobErrorRequest = {
        errorCode: string;
        errorMessage?: string | null;
        variables?: { [key: string]: unknown } | null;
    }
    Index

    Properties

    errorCode: string

    The error code that will be matched with an error catch event.

    errorMessage?: string | null

    An error message that provides additional context.

    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.