n8cn / packages /cli /src /errors /missing-execution-stop.error.ts
gallyga's picture
Add n8n Chinese version
aec3094
import { UserError } from 'n8n-workflow';
export class MissingExecutionStopError extends UserError {
constructor(executionId: string) {
super('Failed to find execution to stop', { extra: { executionId } });
}
}