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

13 lines
383 B
Python
Executable file

"""Exceptions specific the the image sub-package."""
class InvalidImageStreamError(Exception):
"""The recognized image stream appears to be corrupted."""
class UnexpectedEndOfFileError(Exception):
"""EOF was unexpectedly encountered while reading an image stream."""
class UnrecognizedImageError(Exception):
"""The provided image stream could not be recognized."""