n8cn / packages /cli /src /errors /execution-not-found-error.ts
gallyga's picture
Add n8n Chinese version
aec3094
import { UnexpectedError } from 'n8n-workflow';
export class ExecutionNotFoundError extends UnexpectedError {
constructor(executionId: string) {
super('No active execution found', { extra: { executionId } });
}
}