8 lines
218 B
TypeScript
Executable File
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 } });
|
|
}
|
|
}
|