We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a60e3cf commit 79cb52aCopy full SHA for 79cb52a
src/saml2/cryptography/errors.py
@@ -0,0 +1,17 @@
1
+from saml2 import Error
2
+
3
4
+class CryptographyError(Error):
5
+ """Generic error from saml2.cryptography modules"""
6
7
8
+class SymmetricCryptographyError(CryptographyError):
9
+ """Generic error from saml2.cryptography.symmetric modules"""
10
11
12
+class AsymmetricCryptographyError(CryptographyError):
13
+ """Generic error from saml2.cryptography.asymmetric modules"""
14
15
16
+class PKICryptographyError(CryptographyError):
17
+ """Generic error from saml2.cryptography.pki modules"""
0 commit comments