MCPcopy Index your code
hub / github.com/couchbase/couchbase-python-client / UnAmbiguousTimeoutException

Class UnAmbiguousTimeoutException

couchbase/exceptions.py:511–521  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

509
510
511class UnAmbiguousTimeoutException(CouchbaseException):
512 def __init__(self, message=None, **kwargs):
513 if message and isinstance(message, str) and 'message' not in kwargs:
514 kwargs['message'] = message
515 super().__init__(**kwargs)
516
517 def __repr__(self):
518 return f"{type(self).__name__}({super().__repr__()})"
519
520 def __str__(self):
521 return self.__repr__()
522
523
524class RequestCanceledException(CouchbaseException):

Callers 8

removeMethod · 0.90
popMethod · 0.90
wait_until_readyMethod · 0.90
_decode_replicasMethod · 0.90
removeMethod · 0.90
popMethod · 0.90
wait_until_readyMethod · 0.90
_decode_replicasMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected