diff --git a/src/organisation/exceptions.py b/src/organisation/exceptions.py index 772ec2b..69f601d 100644 --- a/src/organisation/exceptions.py +++ b/src/organisation/exceptions.py @@ -12,8 +12,8 @@ from fastapi import HTTPException, status class OrgNotFoundException(HTTPException): def __init__(self, org_id: Optional[int] = None) -> None: - detail = "Organisation not found" if org_id is None else f"User with ID '{org_id}' was not found." + detail = "Organisation not found" if org_id is None else f"Organisation with ID '{org_id}' was not found." super().__init__( status_code=status.HTTP_404_NOT_FOUND, detail=detail, - ) \ No newline at end of file + )