What does [handled] mean?

I’m confused about this
handle2

This is an exception that was logged from inside a try..catch block: https://docs.sentry.io/development/sdk-dev/interfaces/#exception-mechanism-interface

Updated link: https://docs.sentry.io/development/sdk-dev/event-payloads/exception/

1 Like

Is an exception captured in a React error boundary counted as “handled”?

@ValentinH you’d have better luck getting an answer if you post this as a new topic under the SDKs category :wink:

This is the answer I got from @kamilogorek:

If it was captured through captureException/captureMessages OR one of our instrumentation (eg. XHR, History, EventEmitter API), we mark it as handled. Otherwise - if it bubbled to the global event handler, it was not.