AIM-PIbd-32-Kurbanova-A-A/aimenv/Lib/site-packages/fsspec/exceptions.py

19 lines
331 B
Python
Raw Normal View History

2024-10-02 22:15:59 +04:00
"""
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
"""