File size: 213 Bytes
aec3094
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { UserError } from 'n8n-workflow';

export class InvalidConcurrencyLimitError extends UserError {
	constructor(value: number) {
		super('Concurrency limit set to invalid value', { extra: { value } });
	}
}