Spaces:
Paused
Paused
File size: 261 Bytes
cb1a5c9 | 1 2 3 4 5 6 7 8 9 10 11 | """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."""
|