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
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
1"""
2fsspec user-defined exception classes
3"""
5import asyncio
8class BlocksizeMismatchError(ValueError):
9 """
10 Raised when a cached file is opened with a different blocksize than it was
11 written with
12 """
15class FSTimeoutError(asyncio.TimeoutError):
16 """
17 Raised when a fsspec function timed out occurs
18 """