The operation took longer than the specified (client-side) timeout to complete. This is not an error generated by Cassandra, only the driver.
| 688 | |
| 689 | |
| 690 | class OperationTimedOut(DriverException): |
| 691 | """ |
| 692 | The operation took longer than the specified (client-side) timeout |
| 693 | to complete. This is not an error generated by Cassandra, only |
| 694 | the driver. |
| 695 | """ |
| 696 | |
| 697 | errors = None |
| 698 | """ |
| 699 | A dict of errors keyed by the :class:`~.Host` against which they occurred. |
| 700 | """ |
| 701 | |
| 702 | last_host = None |
| 703 | """ |
| 704 | The last :class:`~.Host` this operation was attempted against. |
| 705 | """ |
| 706 | |
| 707 | def __init__(self, errors=None, last_host=None): |
| 708 | self.errors = errors |
| 709 | self.last_host = last_host |
| 710 | message = "errors=%s, last_host=%s" % (self.errors, self.last_host) |
| 711 | Exception.__init__(self, message) |
| 712 | |
| 713 | |
| 714 | class UnsupportedOperation(DriverException): |
no outgoing calls