n8n
Version:
n8n Workflow Automation Tool
11 lines • 482 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.InvalidConcurrencyLimitError = void 0;
const n8n_workflow_1 = require("n8n-workflow");
class InvalidConcurrencyLimitError extends n8n_workflow_1.UserError {
constructor(value) {
super('Concurrency limit set to invalid value', { extra: { value } });
}
}
exports.InvalidConcurrencyLimitError = InvalidConcurrencyLimitError;
//# sourceMappingURL=invalid-concurrency-limit.error.js.map
;