-
-
Notifications
You must be signed in to change notification settings - Fork 229
Closed
Description
An easy repro is Sentry.Samples.AspNetCore.Blazor.Wasm:
| private static void Thrower() => throw null; |
The sample
throws null but the error gets captured through Sentry.Extensions.Logging which calls _hub.CaptureException which ends up in here getting marked as handled sentry-dotnet/src/Sentry/Internal/MainExceptionProcessor.cs
Lines 177 to 182 in 721b411
| else if (exception.StackTrace != null) | |
| { | |
| // The exception was thrown, but it was caught by the user, not an integration. | |
| // Thus, we can mark it as handled. | |
| mechanism.Handled = true; | |
| } |
Reactions are currently unavailable
Metadata
Metadata
Assignees
Projects
Status
Done