mirror of
https://github.com/n8n-io/n8n
synced 2026-04-21 15:47:20 +00:00
7 lines
216 B
TypeScript
7 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 } });
|
|
}
|
|
}
|