Source code for auth_middleware.exceptions.invalid_token_exception
from fastapi import HTTPException
[docs]
class InvalidTokenException(HTTPException):
"""Exception thrown when the token is invalid
Args:
HTTPException (_type_): _description_
"""
...