Spaces:
Sleeping
Sleeping
File size: 261 Bytes
6464253 | 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."""
|