aec3094
1
2
3
4
5
6
7
8
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'); } }