mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
fix(core): Account for retry of execution aborted by pre-execute hook (#9474)
This commit is contained in:
9
packages/cli/src/errors/aborted-execution-retry.error.ts
Normal file
9
packages/cli/src/errors/aborted-execution-retry.error.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
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',
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user