comparison env/lib/python3.7/site-packages/requests_toolbelt/exceptions.py @ 2:6af9afd405e9 draft

"planemo upload commit 0a63dd5f4d38a1f6944587f52a8cd79874177fc1"
author shellac
date Thu, 14 May 2020 14:56:58 -0400
parents 26e78fe6e8c4
children
comparison
equal deleted inserted replaced
1:75ca89e9b81c 2:6af9afd405e9
1 # -*- coding: utf-8 -*-
2 """Collection of exceptions raised by requests-toolbelt."""
3
4
5 class StreamingError(Exception):
6 """Used in :mod:`requests_toolbelt.downloadutils.stream`."""
7 pass
8
9
10 class VersionMismatchError(Exception):
11 """Used to indicate a version mismatch in the version of requests required.
12
13 The feature in use requires a newer version of Requests to function
14 appropriately but the version installed is not sufficient.
15 """
16 pass
17
18
19 class RequestsVersionTooOld(Warning):
20 """Used to indicate that the Requests version is too old.
21
22 If the version of Requests is too old to support a feature, we will issue
23 this warning to the user.
24 """
25 pass
26
27
28 class IgnoringGAECertificateValidation(Warning):
29 """Used to indicate that given GAE validation behavior will be ignored.
30
31 If the user has tried to specify certificate validation when using the
32 insecure AppEngine adapter, it will be ignored (certificate validation will
33 remain off), so we will issue this warning to the user.
34
35 In :class:`requests_toolbelt.adapters.appengine.InsecureAppEngineAdapter`.
36 """
37 pass