Exceptionless.JavaScript
Exceptionless.JavaScript copied to clipboard
Exceptionless JavaScript client
One big issue with exception handling in JavaScript is **Promises**: When you don't explicitly handle an error using a rejection callback, most Promise libraries provide global events like `Promise.onPossiblyUnhandledRejection` (bluebird.js),...
When an exception is handled via jQuery.ajaxError, the title in the Exceptionless UI is blank. [jQuery.ajaxError](http://api.jquery.com/ajaxerror/) passes the error string as the 4th argument, which is [being passed](https://github.com/exceptionless/Exceptionless.JavaScript/blob/41e9559ae4725f53e65a8f38a0a71035f6c86107/src/exceptionless.ts#L77) to processUnhandledException...