massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / google-cloud-ndb / google / cloud / ndb / exceptions.pyi
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/google-cloud-ndb/google/cloud/ndb/exceptions.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/google-cloud-ndb/google/cloud/ndb/exceptions.pyi
new file mode 100644 (file)
index 0000000..ab5a3a0
--- /dev/null
@@ -0,0 +1,22 @@
+from typing import Any
+
+class Error(Exception): ...
+
+class ContextError(Error):
+    def __init__(self) -> None: ...
+
+class BadValueError(Error): ...
+class BadArgumentError(Error): ...
+class BadRequestError(Error): ...
+class Rollback(Error): ...
+class BadQueryError(Error): ...
+
+class BadFilterError(Error):
+    filter: Any
+    def __init__(self, filter) -> None: ...
+
+class NoLongerImplementedError(NotImplementedError):
+    def __init__(self) -> None: ...
+
+class Cancelled(Error): ...
+class NestedRetryException(Error): ...