Adding features to find public toilets and shopping streets #41
@ -134,5 +134,10 @@ def get_landmark(landmark_uuid: str) -> Landmark:
|
|||||||
landmark = cache_client.get(f"landmark_{landmark_uuid}")
|
landmark = cache_client.get(f"landmark_{landmark_uuid}")
|
||||||
return landmark
|
return landmark
|
||||||
except KeyError as exc:
|
except KeyError as exc:
|
||||||
raise HTTPException(status_code=404,
|
raise HTTPException(status_code=404, detail="Landmark not found") from exc
|
||||||
detail="Landmark not found") from exc
|
except ConnectionError as exc:
|
||||||
|
raise HTTPException(status_code=503, detail="Service unavailable") from exc
|
||||||
|
except TimeoutError as exc:
|
||||||
|
raise HTTPException(status_code=504, detail="Request timed out") from exc
|
||||||
|
except Exception as exc:
|
||||||
|
raise HTTPException(status_code=500, detail="An unexpected error occurred") from exc
|
||||||
|
Loading…
x
Reference in New Issue
Block a user