File size: 330 Bytes
fe41391 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
"""
fsspec user-defined exception classes
"""
import asyncio
class BlocksizeMismatchError(ValueError):
"""
Raised when a cached file is opened with a different blocksize than it was
written with
"""
class FSTimeoutError(asyncio.TimeoutError):
"""
Raised when a fsspec function timed out occurs
"""
|