blob: 0a1e03b81189bdde7329d31539b0f3b340873b68 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
"""Exceptions used with python-pptx.
The base exception class is PythonPptxError.
"""
from __future__ import annotations
class PythonPptxError(Exception):
"""Generic error class."""
class PackageNotFoundError(PythonPptxError):
"""
Raised when a package cannot be found at the specified path.
"""
class InvalidXmlError(PythonPptxError):
"""
Raised when a value is encountered in the XML that is not valid according
to the schema.
"""
|