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

12 lines
264 B
Python
Executable file

"""Exceptions specific to python-opc.
The base exception class is OpcError.
"""
class OpcError(Exception):
"""Base error class for python-opc."""
class PackageNotFoundError(OpcError):
"""Raised when a package cannot be found at the specified path."""