10 lines
246 B
TypeScript
10 lines
246 B
TypeScript
import { ApplicationError } from 'n8n-workflow';
|
|
|
|
export class AbortedExecutionRetryError extends ApplicationError {
|
|
constructor() {
|
|
super('The execution was aborted before starting, so it cannot be retried', {
|
|
level: 'warning',
|
|
});
|
|
}
|
|
}
|