mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-03 10:17:00 +02:00
8 lines
213 B
TypeScript
8 lines
213 B
TypeScript
import { UserError } from 'n8n-workflow';
|
|
|
|
export class InvalidConcurrencyLimitError extends UserError {
|
|
constructor(value: number) {
|
|
super('Concurrency limit set to invalid value', { extra: { value } });
|
|
}
|
|
}
|