@rudderstack/workflow-engine
Version:
A generic workflow execution engine
12 lines • 506 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.WorkflowCreationError = void 0;
const step_creation_1 = require("./step_creation");
class WorkflowCreationError extends step_creation_1.StepCreationError {
constructor(message, workflowName, stepName, childStepName) {
super(message, stepName, childStepName);
this.workflowName = workflowName;
}
}
exports.WorkflowCreationError = WorkflowCreationError;
//# sourceMappingURL=workflow_creation.js.map