commit | 0d62fb05a9203398510b2f0a6c940daab640f1d4 | [log] [tgz] |
---|---|---|
author | Alex Gaynor <alex.gaynor@gmail.com> | Fri Jan 24 12:19:05 2014 -0600 |
committer | Alex Gaynor <alex.gaynor@gmail.com> | Fri Jan 24 12:19:05 2014 -0600 |
tree | 749debfab745b588b1a986507b4216b570280daa | |
parent | bb41bf4d798a6761889ea828f7d7f160f17b4132 [diff] [blame] |
Switch to using our own InternalError, instead of SystemError
diff --git a/cryptography/exceptions.py b/cryptography/exceptions.py index 44363c2..2654b45 100644 --- a/cryptography/exceptions.py +++ b/cryptography/exceptions.py
@@ -34,3 +34,7 @@ class InvalidSignature(Exception): pass + + +class InternalError(Exception): + pass