I am developing a UWP app in C# and I have attached a handler for Unhandled exceptions that sends us the unhandled exceptions so that we can diagnose them).
I am receiving a large amount of
System.Exception - Unspecified error (Exception from HRESULT: 0x80004005)
without any stacktrace nor other additional information.
This has never happened locally in debug, but only in production for real users, that never complained about this problem, so I guess this seems to be a silent error that may not affect the users.
Anyway, I am a little bit uneasy about leaving this issue unsolved.
How can I find the culprit of this issue?
Has anyone ever bumped into this issue before?
Thanks!