brief-extractor/backend/venv/lib/python3.10/site-packages/fsspec/exceptions.py
2026-03-06 18:42:46 +00:00

18 lines
331 B
Python
Executable file

"""
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
"""