massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / httplib2 / httplib2 / error.pyi
1 from typing import Any
2
3 class HttpLib2Error(Exception): ...
4
5 class HttpLib2ErrorWithResponse(HttpLib2Error):
6     response: Any
7     content: Any
8     def __init__(self, desc, response, content) -> None: ...
9
10 class RedirectMissingLocation(HttpLib2ErrorWithResponse): ...
11 class RedirectLimit(HttpLib2ErrorWithResponse): ...
12 class FailedToDecompressContent(HttpLib2ErrorWithResponse): ...
13 class UnimplementedDigestAuthOptionError(HttpLib2ErrorWithResponse): ...
14 class UnimplementedHmacDigestAuthOptionError(HttpLib2ErrorWithResponse): ...
15 class MalformedHeader(HttpLib2Error): ...
16 class RelativeURIError(HttpLib2Error): ...
17 class ServerNotFoundError(HttpLib2Error): ...
18 class ProxiesUnavailableError(HttpLib2Error): ...