Need to seek a stream, but stream does not support seeking.
| 450 | |
| 451 | |
| 452 | class UnseekableStreamError(BotoCoreError): |
| 453 | """Need to seek a stream, but stream does not support seeking.""" |
| 454 | |
| 455 | fmt = ( |
| 456 | 'Need to rewind the stream {stream_object}, but stream ' |
| 457 | 'is not seekable.' |
| 458 | ) |
| 459 | |
| 460 | |
| 461 | class WaiterError(BotoCoreError): |