fe / bt-source /panel /class /webauthn /helpers /exceptions.py
GGSheng's picture
feat: deploy Gemma 4 to hf space
3a5cf48 verified
class WebAuthnException(Exception):
pass
class InvalidRegistrationOptions(WebAuthnException):
pass
class InvalidRegistrationResponse(WebAuthnException):
pass
class InvalidAuthenticationOptions(WebAuthnException):
pass
class InvalidAuthenticationResponse(WebAuthnException):
pass
class InvalidPublicKeyStructure(WebAuthnException):
pass
class UnsupportedPublicKeyType(WebAuthnException):
pass
class InvalidJSONStructure(WebAuthnException):
pass
class InvalidAuthenticatorDataStructure(WebAuthnException):
pass
class SignatureVerificationException(WebAuthnException):
pass
class UnsupportedAlgorithm(WebAuthnException):
pass
class UnsupportedPublicKey(WebAuthnException):
pass
class UnsupportedEC2Curve(WebAuthnException):
pass
class InvalidTPMPubAreaStructure(WebAuthnException):
pass
class InvalidTPMCertInfoStructure(WebAuthnException):
pass
class InvalidCertificateChain(WebAuthnException):
pass
class InvalidBackupFlags(WebAuthnException):
pass
class InvalidCBORData(WebAuthnException):
pass