8 lines
213 B
TypeScript
Executable File
8 lines
213 B
TypeScript
Executable File
import { UserError } from 'n8n-workflow';
|
|
|
|
export class InvalidConcurrencyLimitError extends UserError {
|
|
constructor(value: number) {
|
|
super('Concurrency limit set to invalid value', { extra: { value } });
|
|
}
|
|
}
|