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

export class AbortedExecutionRetryError extends UnexpectedError {
	constructor() {
		super('The execution was aborted before starting, so it cannot be retried');
	}
}