File: exceptions.pyi

package info (click to toggle)
typeshed 0.0~git20221107.4f381af-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 18,036 kB
  • sloc: python: 3,216; sh: 62; makefile: 13
file content (12 lines) | stat: -rw-r--r-- 434 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
class JOSEError(Exception): ...
class JWSError(JOSEError): ...
class JWSSignatureError(JWSError): ...
class JWSAlgorithmError(JWSError): ...
class JWTError(JOSEError): ...
class JWTClaimsError(JWTError): ...
class ExpiredSignatureError(JWTError): ...
class JWKError(JOSEError): ...
class JWEError(JOSEError): ...
class JWEParseError(JWEError): ...
class JWEInvalidAuth(JWEError): ...
class JWEAlgorithmUnsupportedError(JWEError): ...