from src.application.domain.exceptions.application_exceptions import ApplicationException from typing import Mapping class JwtErrorException(ApplicationException): def __init__(self, message: str = 'JWT error occurred', headers: Mapping[str, str] | None = None): super().__init__(500, message, headers)