This commit is contained in:
2024-11-19 18:00:11 +03:00
parent dc4abee6bc
commit a8740fdf2f
25 changed files with 295 additions and 41 deletions

View File

@ -4,6 +4,9 @@ class UrlRemoverNotImplementedException(Exception):
self.domain = domain
super().__init__(self.__base_message)
def __str__(self):
return f'{self.__base_message}: {self.domain}'
class UnknownAnimationType(Exception):
pass