@rudderstack/workflow-engine
Version:
A generic workflow execution engine
12 lines • 493 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.WorkflowExecutionError = void 0;
const step_execution_1 = require("./step_execution");
class WorkflowExecutionError extends step_execution_1.StepExecutionError {
constructor(message, status, workflowName, info) {
super(message, status, info);
this.workflowName = workflowName;
}
}
exports.WorkflowExecutionError = WorkflowExecutionError;
//# sourceMappingURL=workflow_execution.js.map