If i throw an error on async function crash the server. ``` app.post('/auth/google', async (req: any, res: any) => { throw new Error('Invalid google login'); return; }); ```
If i throw an error on async function crash the server.