UNPKG

n8n

Version:

n8n Workflow Automation Tool

14 lines 572 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DuplicateExecutionError = void 0; const n8n_workflow_1 = require("n8n-workflow"); class DuplicateExecutionError extends n8n_workflow_1.OperationalError { constructor(deduplicationKey, cause) { super(`Execution with deduplication key "${deduplicationKey}" already exists`, { cause, }); this.deduplicationKey = deduplicationKey; } } exports.DuplicateExecutionError = DuplicateExecutionError; //# sourceMappingURL=duplicate-execution.error.js.map