diff options
author | Tekky <98614666+xtekky@users.noreply.github.com> | 2023-12-13 15:27:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-13 15:27:55 +0100 |
commit | 99127111f525d4ed1469c3547bcb491a8cdf5963 (patch) | |
tree | 10ed7693fe0116fa91ab9c77cbc0aa0951417f75 /g4f/errors.py | |
parent | ~ (diff) | |
parent | Change default port for gui (diff) | |
download | gpt4free-99127111f525d4ed1469c3547bcb491a8cdf5963.tar gpt4free-99127111f525d4ed1469c3547bcb491a8cdf5963.tar.gz gpt4free-99127111f525d4ed1469c3547bcb491a8cdf5963.tar.bz2 gpt4free-99127111f525d4ed1469c3547bcb491a8cdf5963.tar.lz gpt4free-99127111f525d4ed1469c3547bcb491a8cdf5963.tar.xz gpt4free-99127111f525d4ed1469c3547bcb491a8cdf5963.tar.zst gpt4free-99127111f525d4ed1469c3547bcb491a8cdf5963.zip |
Diffstat (limited to 'g4f/errors.py')
-rw-r--r-- | g4f/errors.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/g4f/errors.py b/g4f/errors.py new file mode 100644 index 00000000..b554aead --- /dev/null +++ b/g4f/errors.py @@ -0,0 +1,26 @@ +class ProviderNotFoundError(Exception): + pass + +class ProviderNotWorkingError(Exception): + pass + +class StreamNotSupportedError(Exception): + pass + +class AuthenticationRequiredError(Exception): + pass + +class ModelNotFoundError(Exception): + pass + +class ModelNotAllowed(Exception): + pass + +class RetryProviderError(Exception): + pass + +class RetryNoProviderError(Exception): + pass + +class VersionNotFoundError(Exception): + pass
\ No newline at end of file |