10 lines
257 B
Python
10 lines
257 B
Python
|
|
from fastapi import Request
|
||
|
|
from fastapi.responses import JSONResponse
|
||
|
|
|
||
|
|
|
||
|
|
async def global_exception_handler(request: Request, exc: Exception):
|
||
|
|
return JSONResponse(
|
||
|
|
status_code=500,
|
||
|
|
content={"detail": "Error interno del servidor"},
|
||
|
|
)
|