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