Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/fsspec/exceptions.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

4 statements  

1""" 

2fsspec user-defined exception classes 

3""" 

4 

5import asyncio 

6 

7 

8class BlocksizeMismatchError(ValueError): 

9 """ 

10 Raised when a cached file is opened with a different blocksize than it was 

11 written with 

12 """ 

13 

14 

15class FSTimeoutError(asyncio.TimeoutError): 

16 """ 

17 Raised when a fsspec function timed out occurs 

18 """