Convex error handling best practices
There are some Expected errors, and there could be convex-specific errors (network errs, etc)
I had some questions regarding error retries and how to handle them
Note: the db query is used inside of a try catch
if I handle a public mutation as this, wont the db errors now classify as my Application(expected) errors as well, if so, what's the best way to handle it, just let the db calls be outside of try-catches?
