ktongue's picture
Upload hf_env/lib/python3.14/site-packages/fsspec/exceptions.py with huggingface_hub
3446a56 verified
raw
history blame contribute delete
331 Bytes
"""
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
"""