We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1d09c1 commit 28a6732Copy full SHA for 28a6732
src/raven.js
@@ -280,6 +280,10 @@ Raven.prototype = {
280
while(i--) args[i] = deep ? self.wrap(options, arguments[i]) : arguments[i];
281
282
try {
283
+ // Attempt to invoke user-land function
284
+ // NOTE: If you are a Sentry user, and you are seeing this stack frame, it
285
+ // means Raven caught an error invoking your application code. This is
286
+ // expected behavior and NOT indicative of a bug with Raven.js.
287
return func.apply(this, args);
288
} catch(e) {
289
self._ignoreNextOnError();
0 commit comments