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

Method error_context

couchbase/exceptions.py:373–380  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

371
372 @property
373 def error_context(self) -> ErrorContextType:
374 if not self._context:
375 if self._base:
376 base_ec = self._base.error_context() or dict()
377 else:
378 base_ec = dict()
379 self._context = ErrorContext.from_dict(**base_ec)
380 return self._context
381
382 @property
383 def message(self) -> Optional[str]:

Callers 1

build_exceptionMethod · 0.80

Calls 1

from_dictMethod · 0.80

Tested by

no test coverage detected