Changed excpetion name based on feedback from dreid
diff --git a/docs/exceptions.rst b/docs/exceptions.rst
index b391e62..6ac11b3 100644
--- a/docs/exceptions.rst
+++ b/docs/exceptions.rst
@@ -3,7 +3,7 @@
 
 .. currentmodule:: cryptography.exceptions
 
-.. class:: NoSuchAlgorithm
+.. class:: UnsupportedAlgorithm
 
     This is raised when a backend doesn't support the requested algorithm (or
     combination of algorithms).
diff --git a/docs/hazmat/primitives/symmetric-encryption.rst b/docs/hazmat/primitives/symmetric-encryption.rst
index 48bad92..c1c8d24 100644
--- a/docs/hazmat/primitives/symmetric-encryption.rst
+++ b/docs/hazmat/primitives/symmetric-encryption.rst
@@ -43,8 +43,8 @@
             provider.
 
         If the backend doesn't support the requested combination of ``cipher``
-        and ``mode`` a :class:`cryptography.exceptions.NoSuchAlgorithm` will
-        be raised.
+        and ``mode`` an :class:`cryptography.exceptions.UnsupportedAlgorithm`
+        will be raised.
 
     .. method:: decryptor()
 
@@ -53,8 +53,8 @@
             provider.
 
         If the backend doesn't support the requested combination of ``cipher``
-        and ``mode`` a :class:`cryptography.exceptions.NoSuchAlgorithm` will
-        be raised.
+        and ``mode`` an :class:`cryptography.exceptions.UnsupportedAlgorithm`
+        will be raised.
 
 
 .. currentmodule:: cryptography.hazmat.primitives.interfaces