n8n/packages/cli/src/errors/missing-execution-stop.error.ts

8 lines
230 B
TypeScript

import { ApplicationError } from 'n8n-workflow';
export class MissingExecutionStopError extends ApplicationError {
constructor(executionId: string) {
super('Failed to find execution to stop', { extra: { executionId } });
}
}