This commit is contained in:
2026-03-25 00:51:04 +03:30
parent 0eda50f1c3
commit 0feb14cbe6
105 changed files with 2068 additions and 19 deletions
+18
View File
@@ -0,0 +1,18 @@
class ExternalAPIAdapterError(Exception):
pass
class ServiceNotFound(ExternalAPIAdapterError):
pass
class MockDirectoryNotFound(ExternalAPIAdapterError):
pass
class MockFileNotFound(ExternalAPIAdapterError):
pass
class ExternalAPIRequestError(ExternalAPIAdapterError):
pass