-
Notifications
You must be signed in to change notification settings - Fork 260
Expand file tree
/
Copy pathexceptions.py
More file actions
64 lines (36 loc) · 899 Bytes
/
exceptions.py
File metadata and controls
64 lines (36 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
class JOSEError(Exception):
pass
class JWSError(JOSEError):
pass
class JWSSignatureError(JWSError):
pass
class JWSAlgorithmError(JWSError):
pass
class JWTError(JOSEError):
pass
class JWTClaimsError(JWTError):
pass
class ExpiredSignatureError(JWTError):
pass
class JWKError(JOSEError):
pass
class JWKAlgMismatchError(JWKError):
'''JWK Key type doesn't support the given algorithm.'''
pass
class JWEError(JOSEError):
"""Base error for all JWE errors"""
pass
class JWEParseError(JWEError):
"""Could not parse the JWE string provided"""
pass
class JWEInvalidAuth(JWEError):
"""
The authentication tag did not match the protected sections of the
JWE string provided
"""
pass
class JWEAlgorithmUnsupportedError(JWEError):
"""
The JWE algorithm is not supported by the backend
"""
pass