diff --git a/packages/core/src/NodeExecuteFunctions.ts b/packages/core/src/NodeExecuteFunctions.ts index 2a5ad41b004f6..1f68e2b1d4b6e 100644 --- a/packages/core/src/NodeExecuteFunctions.ts +++ b/packages/core/src/NodeExecuteFunctions.ts @@ -1805,7 +1805,7 @@ export async function requestWithAuthentication( } throw error; } catch (error) { - if (error instanceof NodeOperationError) throw error; + if (error instanceof ExecutionBaseError) throw error; throw new NodeApiError(this.getNode(), error); }