Looking at the code for callWithErrorHandling, it has a try/catch block which will call handleError when an error occurs.
However, handleError will then try to process the error with callWithErrorHandling again, which leads to infinite recursion, causing RangeError Maximum call stack size exceeded.

Aside from making sure the custom error handler doesn't ever throw any errors, can we maybe prevent within Vue that callWithErrorHandling will not be called again recursively if it itself has errored?
Looking at the code for
callWithErrorHandling, it has atry/catchblock which will callhandleErrorwhen an error occurs.However,
handleErrorwill then try to process the error withcallWithErrorHandlingagain, which leads to infinite recursion, causingRangeError Maximum call stack size exceeded.Aside from making sure the custom error handler doesn't ever throw any errors, can we maybe prevent within Vue that
callWithErrorHandlingwill not be called again recursively if it itself has errored?