from abc import ABCMeta class MeDaCaException(Exception, metaclass=ABCMeta): def __init__(self, error_id: str, message) -> None: super().__init__(message) self.error_id = error_id class FileNotFoundException(MeDaCaException): pass