| 34 | |
| 35 | |
| 36 | class InvalidCritHeaderParameterNameError(JoseError): |
| 37 | error = "invalid_crit_header_parameter_name" |
| 38 | |
| 39 | def __init__(self, name): |
| 40 | description = f"Invalid Header Parameter Name: {name}" |
| 41 | super().__init__(description=description) |
| 42 | |
| 43 | |
| 44 | class InvalidEncryptionAlgorithmForECDH1PUWithKeyWrappingError(JoseError): |
no outgoing calls
no test coverage detected
searching dependent graphs…