UNPKG

@rudderstack/workflow-engine

Version:
15 lines 582 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.StepExecutionError = void 0; const status_1 = require("./status"); class StepExecutionError extends status_1.StatusError { constructor(message, status, info) { super(message, status); this.stepName = info?.stepName; this.childStepName = info?.childStepName; this.error = info?.error ?? this; this.originalError = this.error.originalError ?? info?.error; } } exports.StepExecutionError = StepExecutionError; //# sourceMappingURL=step_execution.js.map