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

10 lines
261 B
Python
Executable file

"""Exceptions for oxml sub-package."""
class XmlchemyError(Exception):
"""Generic error class."""
class InvalidXmlError(XmlchemyError):
"""Raised when invalid XML is encountered, such as on attempt to access a missing
required child element."""