You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
503 B
28 lines
503 B
# encoding: utf-8
|
|
|
|
"""
|
|
Exceptions used with python-docx.
|
|
|
|
The base exception class is PythonDocxError.
|
|
"""
|
|
|
|
|
|
class PythonDocxError(Exception):
|
|
"""
|
|
Generic error class.
|
|
"""
|
|
|
|
|
|
class InvalidSpanError(PythonDocxError):
|
|
"""
|
|
Raised when an invalid merge region is specified in a request to merge
|
|
table cells.
|
|
"""
|
|
|
|
|
|
class InvalidXmlError(PythonDocxError):
|
|
"""
|
|
Raised when invalid XML is encountered, such as on attempt to access a
|
|
missing required child element
|
|
"""
|