Files
n8n-enterprise-unlocked/packages/cli/src/errors/missing-execution-stop.error.ts
T

8 lines
216 B
TypeScript

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