Fixed the wrong exceptions being imported

This commit is contained in:
Profitroll 2023-12-14 01:09:04 +02:00
parent 5129cb449e
commit 25c902c194
1 changed files with 13 additions and 1 deletions

View File

@ -107,6 +107,18 @@ async def search_page_invalid_exception_handler(
)
@app.exception_handler(SearchPageInvalidError)
async def search_token_invalid_exception_handler(
request: Request, exc: SearchPageInvalidError
):
return UJSONResponse(
status_code=HTTP_401_UNAUTHORIZED,
content={
"detail": "Parameters 'page' and 'page_size' must be greater or equal to 1."
},
)
@app.exception_handler(SearchTokenInvalidError)
async def search_token_invalid_exception_handler(
request: Request, exc: SearchTokenInvalidError
@ -114,7 +126,7 @@ async def search_token_invalid_exception_handler(
return UJSONResponse(
status_code=HTTP_401_UNAUTHORIZED,
content={
"detail": "Parameters 'page' and 'page_size' must be greater or equal to 1."
"detail": "Invalid search token."
},
)