misc.py 275 B

123456789
  1. # SPDX-FileCopyrightText: 2024 geisserml <geisserml@gmail.com>
  2. # SPDX-License-Identifier: Apache-2.0 OR BSD-3-Clause
  3. __all__ = ("PdfiumError", )
  4. class PdfiumError (RuntimeError):
  5. """ An exception from the PDFium library, detected by function return code. """
  6. pass