| 103 | |
| 104 | |
| 105 | class InsecureClaimError(JoseError): |
| 106 | error = "insecure_claim" |
| 107 | |
| 108 | def __init__(self, claim): |
| 109 | description = f"Insecure claim '{claim}'" |
| 110 | super().__init__(description=description) |
| 111 | |
| 112 | |
| 113 | class ExpiredTokenError(JoseError): |
no outgoing calls
no test coverage detected
searching dependent graphs…