n8n/packages/cli/src/errors/execution-not-found-error.ts
कारतोफ्फेलस्क्रिप्ट™ 67fb6d6fdd
refactor(core): Refactor execution post-execute promises (no-changelog) (#10809)
Co-authored-by: Danny Martini <danny@n8n.io>
2024-09-23 12:08:57 +02:00

8 lines
220 B
TypeScript

import { ApplicationError } from 'n8n-workflow';
export class ExecutionNotFoundError extends ApplicationError {
constructor(executionId: string) {
super('No active execution found', { extra: { executionId } });
}
}