mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-01 17:27:14 +02:00
8 lines
216 B
TypeScript
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 } });
|
|
}
|
|
}
|