Files
prop-data-guard/backend/.venv/lib/python3.9/site-packages/docx/opc/exceptions.py
T
2026-04-22 17:07:33 +08:00

13 lines
264 B
Python

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