@hono/sentry middleware, what errors are exactly being caught? Will this middleware automatically catch all expcetions thrown from my middleware trpc server?trpc.tstrpcContext.ts - just a function that creates the trpcContext (Sentry.init() is called here)worker.ts - hono server running on CF workersSENTRY_DSN key as a Cloudflare binding - (file: workers.ts)trpcServer server middleware as per the @hono/trpc-server documentation - (file: worker.ts)SENTRY_DSN - (file: trpcContext.ts)SENTRY_DSN key in the context, I pass this key to Sentry.init() - which comes from sentry/browser. - (file: trpcContext.ts)Sentry.init() which I now have access to in every single procedure - (file: trpcContext.ts - line 61)errorFormatter check if the error.code === 'INTERNAL_SERVER_ERROR and then capture all these exceptions to sentry, before I return the error to the client. - (file: trpc.ts - line 8)