HTTP response did not return expected number of bytes.
| 469 | |
| 470 | |
| 471 | class IncompleteReadError(BotoCoreError): |
| 472 | """HTTP response did not return expected number of bytes.""" |
| 473 | |
| 474 | fmt = ( |
| 475 | '{actual_bytes} read, but total bytes ' 'expected is {expected_bytes}.' |
| 476 | ) |
| 477 | |
| 478 | |
| 479 | class InvalidExpressionError(BotoCoreError): |
no outgoing calls
no test coverage detected