Files
n8n-enterprise-unlocked/packages/cli/src/errors/queued-execution-retry.error.ts
T
2025-02-27 09:30:55 +02:00

8 lines
217 B
TypeScript

import { UnexpectedError } from 'n8n-workflow';
export class QueuedExecutionRetryError extends UnexpectedError {
constructor() {
super('Execution is queued to run (not yet started) so it cannot be retried');
}
}