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