summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorEli Collins <elic@assurancetechnologies.com>2012-02-08 23:25:45 -0500
committerEli Collins <elic@assurancetechnologies.com>2012-02-08 23:25:45 -0500
commit4712bcd50e12e8ed2e8c135d88ed49951dd45bdf (patch)
treeba00b4a8b0f6fb28c8659c26dab94880dc93cc65 /docs
parentbf927985d1fe8df1b6a1cb9db4c314bf4c4c13af (diff)
downloadpasslib-4712bcd50e12e8ed2e8c135d88ed49951dd45bdf.tar.gz
renamed passlib.exc warning classes
Diffstat (limited to 'docs')
-rw-r--r--docs/lib/passlib.exc.rst4
-rw-r--r--docs/password_hash_api.rst2
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/lib/passlib.exc.rst b/docs/lib/passlib.exc.rst
index 8be1b0a..ed4413e 100644
--- a/docs/lib/passlib.exc.rst
+++ b/docs/lib/passlib.exc.rst
@@ -15,6 +15,6 @@ Exceptions
Warnings
========
.. autoexception:: PasslibWarning
-.. autoexception:: PasslibContextWarning
-.. autoexception:: PasslibHandlerWarning
+.. autoexception:: PasslibConfigWarning
+.. autoexception:: PasslibHashWarning
.. autoexception:: PasslibRuntimeWarning
diff --git a/docs/password_hash_api.rst b/docs/password_hash_api.rst
index 5e59f83..15d4a72 100644
--- a/docs/password_hash_api.rst
+++ b/docs/password_hash_api.rst
@@ -147,7 +147,7 @@ Required Attributes
If supported, ``relaxed=True`` will cause the handler to
be more forgiving about invalid input. Instead of immediately throwing
a :exc:`ValueError`, it will first attempt to correct the input,
- and issue a :exc:`~passlib.exc.PasslibHandlerWarning` if successful.
+ and issue a :exc:`~passlib.exc.PasslibHashWarning` if successful.
This includes actions like clamping out-of-range rounds values,
and truncating salts that are too long.