n8cn / packages /cli /src /errors /queued-execution-retry.error.ts
gallyga's picture
Add n8n Chinese version
aec3094
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');
}
}