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

Class ValueFormatException

couchbase/exceptions.py:600–612  ·  view source on GitHub ↗

Failed to decode or encode value

Source from the content-addressed store, hash-verified

598
599
600class ValueFormatException(CouchbaseException):
601 """Failed to decode or encode value"""
602
603 def __init__(self, message=None, **kwargs):
604 if message and isinstance(message, str) and 'message' not in kwargs:
605 kwargs['message'] = message
606 super().__init__(**kwargs)
607
608 def __repr__(self):
609 return f"{type(self).__name__}({super().__repr__()})"
610
611 def __str__(self):
612 return self.__repr__()
613
614
615class HTTPException(CouchbaseException):

Callers 9

encode_valueMethod · 0.90
decode_valueMethod · 0.90
encode_valueMethod · 0.90
decode_valueMethod · 0.90
encode_valueMethod · 0.90
decode_valueMethod · 0.90
encode_valueMethod · 0.90
decode_valueMethod · 0.90
encode_valueMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected