Files
Buffteks-Website/buffteks/lib/python3.12/site-packages/docx/opc/exceptions.py
2025-05-08 21:10:14 -05: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."""