Files
Agent-n8n/n8n-n8n-1.109.2/packages/cli/src/errors/execution-not-found-error.ts
2025-09-08 04:48:28 +08:00

8 lines
218 B
TypeScript
Executable File

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