Source code for auth_middleware.exceptions.invalid_authorization_exception
from fastapi import HTTPException
[docs]
class InvalidAuthorizationException(HTTPException):
"""Exception thrown when the authorization header is invalid
Args:
HTTPException (_type_): _description_
"""
...