diff --git a/src/check_phat_nguoi/config/exceptions.py b/src/check_phat_nguoi/config/exceptions.py deleted file mode 100644 index a688316..0000000 --- a/src/check_phat_nguoi/config/exceptions.py +++ /dev/null @@ -1,7 +0,0 @@ -class NoConfigFoundException(Exception): - def __init__(self, message: str = "No config file found") -> None: - super().__init__(message) - self.message: str = message - - def __str__(self) -> str: - return self.message diff --git a/src/check_phat_nguoi/get_data/engines/exceptions.py b/src/check_phat_nguoi/get_data/engines/exceptions.py deleted file mode 100644 index e1a8d25..0000000 --- a/src/check_phat_nguoi/get_data/engines/exceptions.py +++ /dev/null @@ -1,9 +0,0 @@ -class ParsingDataWhileGettingDataException(Exception): - def __init__( - self, message: str = "Error when parsing data while getting data" - ) -> None: - super().__init__(message) - self.message: str = message - - def __str__(self) -> str: - return self.message