bethania_porto_santos/dist-windows/python/Lib/site-packages/pptx/exc.py
lronetto c3a0739a80 Adiciona gerador de Plano de Ataque (PPTX por quinzena) com pacotes standalone
- gerar_plano.py: le planilha de planejamento (.xlsx) e um PPTX-modelo,
  gera uma quinzena por slide pintando cada quadrante (Geotecnia,
  Infraestrutura, Superestrutura) conforme o status na data
- cores.json: cores/opacidades configuraveis sem precisar mexer no codigo
- dist-linux/: executavel standalone (PyInstaller) + arquivos de exemplo
- dist-windows/: pacote com Python embeddable (sem instalacao) + .bat

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-12 01:55:54 +00:00

24 lines
473 B
Python

"""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.
"""