File size: 216 Bytes
aec3094
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { UserError } from 'n8n-workflow';

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