Exception raised when a read cannot be satisfied. Raised by ``read_until`` and ``read_until_regex`` with a ``max_bytes`` argument.
| 101 | |
| 102 | |
| 103 | class UnsatisfiableReadError(Exception): |
| 104 | """Exception raised when a read cannot be satisfied. |
| 105 | |
| 106 | Raised by ``read_until`` and ``read_until_regex`` with a ``max_bytes`` |
| 107 | argument. |
| 108 | """ |
| 109 | |
| 110 | pass |
| 111 | |
| 112 | |
| 113 | class StreamBufferFullError(Exception): |