mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-05 00:01:00 +00:00
29 lines
494 B
Python
29 lines
494 B
Python
class ProviderNotFoundError(Exception):
|
|
pass
|
|
|
|
class ProviderNotWorkingError(Exception):
|
|
pass
|
|
|
|
class StreamNotSupportedError(Exception):
|
|
pass
|
|
|
|
class AuthenticationRequiredError(Exception):
|
|
pass
|
|
|
|
class ModelNotFoundError(Exception):
|
|
pass
|
|
|
|
class ModelNotAllowedError(Exception):
|
|
pass
|
|
|
|
class RetryProviderError(Exception):
|
|
pass
|
|
|
|
class RetryNoProviderError(Exception):
|
|
pass
|
|
|
|
class VersionNotFoundError(Exception):
|
|
pass
|
|
|
|
class NestAsyncioError(Exception):
|
|
pass |