aec3094
1
2
3
4
5
6
7
8
import { UnexpectedError } from 'n8n-workflow'; export class ExecutionNotFoundError extends UnexpectedError { constructor(executionId: string) { super('No active execution found', { extra: { executionId } }); } }