diff --git a/src/linkahead/connection/connection.py b/src/linkahead/connection/connection.py
index 63f35a0113e2d7a807b889c31ddc70aa976013d8..273c0c530cf77dcadea844628e6b6d771f80e267 100644
--- a/src/linkahead/connection/connection.py
+++ b/src/linkahead/connection/connection.py
@@ -28,6 +28,7 @@ from __future__ import absolute_import, print_function, unicode_literals
 import logging
 import ssl
 import sys
+from warnings import warn
 import warnings
 from builtins import str  # pylint: disable=redefined-builtin
 from errno import EPIPE as BrokenPipe
@@ -294,6 +295,14 @@ class _DefaultLinkAheadServerConnection(LinkAheadServerConnection):
             self._session.verify = verify
 
 
+class _DefaultCaosDBServerConnection(_DefaultLinkAheadServerConnection):
+    def __init__(self, *args, **kwargs):
+        warn(("The name _DefaultCaosDBServerConnection is deprecated. Please use "
+              "_DefaultLinkAheadServerConnection."),
+             DeprecationWarning)
+        super().__init__(*args, **kwargs)
+
+
 def _make_conf(*conf):
     """_make_conf.
 
diff --git a/src/linkahead/connection/interface.py b/src/linkahead/connection/interface.py
index 4986236971ea468d1d60851c2bf4ae5e4bbf15cb..95ebc7cf8e317eabfd6db8d046a43c94ee0fa0d6 100644
--- a/src/linkahead/connection/interface.py
+++ b/src/linkahead/connection/interface.py
@@ -23,6 +23,7 @@
 #
 """This module defines the LinkAheadServerConnection interface."""
 from abc import ABCMeta, abstractmethod, abstractproperty
+from warnings import warn
 
 # meta class compatible with Python 2 *and* 3:
 ABC = ABCMeta('ABC', (object, ), {'__slots__': ()})
@@ -72,6 +73,13 @@ class LinkAheadHTTPResponse(ABC):
         """
 
 
+class CaosDBHTTPResponse(LinkAheadHTTPResponse):
+    def __init__(self, *args, **kwargs):
+        warn(("The name CaosDBHTTPResponse is deprecated. Please use LinkAheadHTTPResponse."),
+             DeprecationWarning)
+        super().__init__(*args, **kwargs)
+
+
 class LinkAheadServerConnection(ABC):
     """Abstract class which defines the interface for sending requests to the
     LinkAhead server."""
@@ -95,3 +103,11 @@ class LinkAheadServerConnection(ABC):
         -------
         None
         """
+
+
+class CaosDBServerConnection(LinkAheadServerConnection):
+    def __init__(self, *args, **kwargs):
+        warn(("The name CaosDBServerConnection is deprecated. Please use "
+              "LinkAheadServerConnection."),
+             DeprecationWarning)
+        super().__init__(*args, **kwargs)
diff --git a/src/linkahead/exceptions.py b/src/linkahead/exceptions.py
index 9c9ca9a37639b02402506e200a315fb284ffc9d3..e6fb6354d1af819073054ffccc1e05797a62bb59 100644
--- a/src/linkahead/exceptions.py
+++ b/src/linkahead/exceptions.py
@@ -108,6 +108,14 @@ class LinkAheadConnectionError(LinkAheadException):
         LinkAheadException.__init__(self, msg)
 
 
+class CaosDBConnectionError(LinkAheadConnectionError):
+    def __init__(self, *args, **kwargs):
+        warn(("The name CaosDBConnectionError is deprecated. "
+              "Please use LinkAheadConnectionError."),
+             DeprecationWarning)
+        super().__init__(*args, **kwargs)
+
+
 class HTTPURITooLongError(HTTPClientError):
     """The URI of the last request was too long."""