@rudderstack/workflow-engine
Version:
A generic workflow execution engine
15 lines • 582 B
JavaScript
;
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