massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / caldav / caldav / lib / error.pyi
1 from typing import Any, Type
2
3 def assert_(condition: object) -> None: ...
4
5 ERR_FRAGMENT: str
6
7 class AuthorizationError(Exception):
8     url: Any
9     reason: str
10
11 class DAVError(Exception): ...
12 class PropsetError(DAVError): ...
13 class ProppatchError(DAVError): ...
14 class PropfindError(DAVError): ...
15 class ReportError(DAVError): ...
16 class MkcolError(DAVError): ...
17 class MkcalendarError(DAVError): ...
18 class PutError(DAVError): ...
19 class DeleteError(DAVError): ...
20 class NotFoundError(DAVError): ...
21 class ConsistencyError(DAVError): ...
22 class ReponseError(DAVError): ...
23
24 exception_by_method: dict[str, Type[DAVError]]