diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index dfe61ff4e0c4a107e6f1e24667e271557eef2de3..1ce007dc228105849d89d4fc720b9a8bf729ee1b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -148,7 +148,7 @@ pages_prepare: &pages_prepare
     refs:
       - /^release-.*$/i
   script:
-    - echo "Deploying"
+    - echo "Deploying documentation"
     - make doc
     - cp -r build/doc/html public
   artifacts:
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d09fad76f5704db24b60a6dfd1d23cd4599f6488..5fe2d07c3ed4bda60dc1dae83620b3abde5566b2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -17,6 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 ### Changed ###
 
+* `cached_query()` now also caches uniqueness related exceptions.
+
 ### Deprecated ###
 
 ### Removed ###
diff --git a/src/linkahead/apiutils.py b/src/linkahead/apiutils.py
index 39f97fcd49b88fa727102facd01a1579b5b36404..bef01201d39f260139440b4cb939a7c22c943a77 100644
--- a/src/linkahead/apiutils.py
+++ b/src/linkahead/apiutils.py
@@ -501,11 +501,11 @@ def describe_diff(olddiff, newdiff, name=None, as_update=True):
 
     if len(olddiff["parents"]) > 0:
         description += ("Parents that are only in the old version:\n"
-                        + ", ".join(olddiff["parents"]))
+                        + ", ".join(olddiff["parents"]) + "\n")
 
     if len(newdiff["parents"]) > 0:
         description += ("Parents that are only in the new version:\n"
-                        + ", ".join(olddiff["parents"]))
+                        + ", ".join(olddiff["parents"]) + "\n")
 
     for prop in list(set(list(olddiff["properties"].keys())
                          + list(newdiff["properties"].keys()))):
diff --git a/src/linkahead/cached.py b/src/linkahead/cached.py
index 2eff5b1b7e0b9c3a6b3b5b461c6920a2a90f3202..b27afe0469bcaac733ece4c0be3d8d124f6305c0 100644
--- a/src/linkahead/cached.py
+++ b/src/linkahead/cached.py
@@ -36,6 +36,7 @@ from enum import Enum
 from functools import lru_cache
 from typing import Union
 
+from .exceptions import EmptyUniqueQueryError, QueryNotUniqueError
 from .utils import get_entity
 from .common.models import execute_query, Entity, Container
 
@@ -80,16 +81,22 @@ If a query phrase is given, the result must be unique.  If this is not what you
     if count != 1:
         raise ValueError("You must supply exactly one argument.")
 
+    result = (None, )
     if eid is not None:
-        return _cached_access(AccessType.EID, eid, unique=True)
+        result = _cached_access(AccessType.EID, eid, unique=True)
     if name is not None:
-        return _cached_access(AccessType.NAME, name, unique=True)
+        result = _cached_access(AccessType.NAME, name, unique=True)
     if path is not None:
-        return _cached_access(AccessType.PATH, path, unique=True)
+        result = _cached_access(AccessType.PATH, path, unique=True)
     if query is not None:
-        return _cached_access(AccessType.QUERY, query, unique=True)
+        result = _cached_access(AccessType.QUERY, query, unique=True)
 
-    raise ValueError("Not all arguments may be None.")
+    if result != (None, ):
+        if isinstance(result, (QueryNotUniqueError, EmptyUniqueQueryError)):
+            raise result
+        return result
+
+    raise RuntimeError("This line should never be reached.")
 
 
 def cached_query(query_string) -> Container:
@@ -98,7 +105,10 @@ def cached_query(query_string) -> Container:
 All additional arguments are at their default values.
 
     """
-    return _cached_access(AccessType.QUERY, query_string, unique=False)
+    result = _cached_access(AccessType.QUERY, query_string, unique=False)
+    if isinstance(result, (QueryNotUniqueError, EmptyUniqueQueryError)):
+        raise result
+    return result
 
 
 @lru_cache(maxsize=DEFAULT_SIZE)
@@ -111,14 +121,17 @@ def _cached_access(kind: AccessType, value: Union[str, int], unique=True):
     if value in _DUMMY_CACHE:
         return _DUMMY_CACHE[value]
 
-    if kind == AccessType.QUERY:
-        return execute_query(value, unique=unique)
-    if kind == AccessType.NAME:
-        return get_entity.get_entity_by_name(value)
-    if kind == AccessType.EID:
-        return get_entity.get_entity_by_id(value)
-    if kind == AccessType.PATH:
-        return get_entity.get_entity_by_path(value)
+    try:
+        if kind == AccessType.QUERY:
+            return execute_query(value, unique=unique)
+        if kind == AccessType.NAME:
+            return get_entity.get_entity_by_name(value)
+        if kind == AccessType.EID:
+            return get_entity.get_entity_by_id(value)
+        if kind == AccessType.PATH:
+            return get_entity.get_entity_by_path(value)
+    except (QueryNotUniqueError, EmptyUniqueQueryError) as exc:
+        return exc
 
     raise ValueError(f"Unknown AccessType: {kind}")
 
diff --git a/src/linkahead/common/models.py b/src/linkahead/common/models.py
index a52408ce48a71252b6dc83f91b47bb09f23b5b9f..80e4273295dcfbebc093934c8ddfbcf3d78ecb4c 100644
--- a/src/linkahead/common/models.py
+++ b/src/linkahead/common/models.py
@@ -4514,8 +4514,9 @@ def execute_query(q, unique=False, raise_exception_on_error=True, cache=True,
         Whether an exception should be raised when there are errors in the
         resulting entities. Defaults to True.
     cache : bool
-        Whether to use the query server-side cache (equivalent to adding a
-        "cache" flag). Defaults to True.
+        Whether to use the server's query cache (equivalent to adding a
+        "cache" flag) to the Query object. Defaults to True.  Not to be
+        confused with the ``cached`` module.
     flags : dict of str
         Flags to be added to the request.
     page_length : int