| 509 | |
| 510 | |
| 511 | class 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 | |
| 524 | class RequestCanceledException(CouchbaseException): |
no outgoing calls
no test coverage detected