Source code for auth_middleware.exceptions.invalid_credentials_exception
from fastapi import HTTPException
[docs]
class InvalidCredentialsException(HTTPException):
"""Exception thrown when the user credentials are invalid
Args:
HTTPException (_type_): _description_
"""
...