Hello,
The error message you're seeing indicates the following:
However, more recently we found that simply throwing an empty string (or any object whose
In the meantime, is it possible that your script throws such an object? Consider adding a
Good luck!
The error message you're seeing indicates the following:
- Script execution ended prematurely due to an uncaught script exception.
-
Converting the thrown object to a string yielded an empty string.
However, more recently we found that simply throwing an empty string (or any object whose
toString
method returns an empty string) produces the same result. That's a ClearScript bug we need to fix, at least to enable stack traces in such situations.In the meantime, is it possible that your script throws such an object? Consider adding a
try..catch
block to detect that. If not, you may actually be hitting a stack overflow. Are you specifying stack usage limits for your V8 runtimes?Good luck!