Comment on The State of Client side JavaScript Error ReportingComments−k3n12yDoes it handle uncaught errors such as a window.onerror function might do?−duncanbeevers12yNope. You can attach a handler to window.onerror manually that pushes its error to the notifier, but errors handled this way won't have a stack trace.
Comments
Does it handle uncaught errors such as a window.onerror function might do?
Nope. You can attach a handler to window.onerror manually that pushes its error to the notifier, but errors handled this way won't have a stack trace.