+server.ts files), you can return a redirect response by using the Svelte-kit exported function redirect(status: StatusCode, location: string | URL): never. This function will throw with an instance of a class Redirect. Svelte-kit will catch errors that are thrown by your handlers and detect if they are an instance of this class Redirect. If so, they return a redirect response.Redirect will make its way back to Svelte-kit, but instead Effect throws a FiberFailure. How can I get the original thrown value?