FastAPI - Error Handling
What will be the HTTP status code and response body if the following FastAPI endpoint raises a
ValueError without a custom exception handler?
```python
from fastapi import FastAPI
app = FastAPI()
@app.get("/test")
async def test():
raise ValueError("Invalid value")
```
