2023-12-11 02:56:06 +03:00
|
|
|
class ProviderNotFoundError(Exception):
|
2024-02-12 13:41:27 +03:00
|
|
|
...
|
2023-12-11 02:56:06 +03:00
|
|
|
|
|
|
|
class ProviderNotWorkingError(Exception):
|
2024-02-12 13:41:27 +03:00
|
|
|
...
|
2023-12-11 02:56:06 +03:00
|
|
|
|
|
|
|
class StreamNotSupportedError(Exception):
|
2024-02-12 13:41:27 +03:00
|
|
|
...
|
2023-12-11 02:56:06 +03:00
|
|
|
|
|
|
|
class ModelNotFoundError(Exception):
|
2024-02-12 13:41:27 +03:00
|
|
|
...
|
2023-12-11 02:56:06 +03:00
|
|
|
|
2024-01-01 19:48:57 +03:00
|
|
|
class ModelNotAllowedError(Exception):
|
2024-02-12 13:41:27 +03:00
|
|
|
...
|
2023-12-11 02:56:06 +03:00
|
|
|
|
|
|
|
class RetryProviderError(Exception):
|
2024-02-12 13:41:27 +03:00
|
|
|
...
|
2023-12-11 02:56:06 +03:00
|
|
|
|
|
|
|
class RetryNoProviderError(Exception):
|
2024-02-12 13:41:27 +03:00
|
|
|
...
|
2023-12-11 02:56:06 +03:00
|
|
|
|
|
|
|
class VersionNotFoundError(Exception):
|
2024-02-12 13:41:27 +03:00
|
|
|
...
|
2024-01-20 20:23:54 +03:00
|
|
|
|
|
|
|
class NestAsyncioError(Exception):
|
2024-02-12 13:41:27 +03:00
|
|
|
...
|
2024-01-23 21:44:48 +03:00
|
|
|
|
|
|
|
class ModelNotSupportedError(Exception):
|
2024-02-12 13:41:27 +03:00
|
|
|
...
|
2024-01-24 02:46:35 +03:00
|
|
|
|
2024-01-27 04:00:44 +03:00
|
|
|
class MissingRequirementsError(Exception):
|
2024-02-12 13:41:27 +03:00
|
|
|
...
|
2024-01-26 09:54:13 +03:00
|
|
|
|
2024-02-09 00:02:52 +03:00
|
|
|
class MissingAuthError(Exception):
|
2024-02-12 13:41:27 +03:00
|
|
|
...
|
|
|
|
|
|
|
|
class NoImageResponseError(Exception):
|
2024-03-08 12:12:13 +03:00
|
|
|
...
|
|
|
|
|
|
|
|
class RateLimitError(Exception):
|
2024-03-12 04:06:06 +03:00
|
|
|
...
|
|
|
|
|
|
|
|
class ResponseStatusError(Exception):
|
2024-02-12 13:41:27 +03:00
|
|
|
...
|