Source code for pyeudiw.satosa.backends.openid4vp.exceptions

[docs] class AuthRespParsingException(Exception): """Raised when the http request corresponding to an authorization response is malformed."""
[docs] class AuthRespValidationException(Exception): """Raised when the http request corresponding to an authorization response is well formed, but not valid (for example, it might be wrapped in an expired token). """
[docs] class InvalidVPToken(Exception): """ Raised when a given VP is invalid """
[docs] class VPFormatNotSupported(Exception): """ Raised when a given VP format is not supported """
[docs] class NotKBJWT(Exception): """ Raised when a given VP format is not Key Binding JWT format """
[docs] class MissingIssuer(Exception): """ Raised when a given VP not contain the issuer """
[docs] class MdocCborValidationError(Exception): """ Raised when a given VP not contain the issuer """
[docs] class VPExpired(Exception): """ Raised when a given VP is expired """
[docs] class VPRevoked(Exception): """ Raised when a given VP is revoked """