:orphan: :py:mod:`glpkg.error` ===================== .. py:module:: glpkg.error Module Contents --------------- .. py:exception:: GlpkgError Bases: :py:obj:`Exception` A generic error for all errors that are handled in :func:`glpkg.app.run()`, e.g. missing file or key. .. py:exception:: MissingKey Bases: :py:obj:`GlpkgError` A required key is missing from glpkg.json .. py:exception:: WrongChecksumError(package_filename: str, expected_hash: str, actual_hash: str) Bases: :py:obj:`GlpkgError` Downloaded package checksum does not match the one in the lock file .. py:exception:: UnsupportedLockFileVersion Bases: :py:obj:`GlpkgError` glpkg_lock.json has unsupported version .. py:exception:: DownloadError(dest_path: pathlib.Path) Bases: :py:obj:`GlpkgError` File does not exist after downloading .. py:exception:: GlpkgJsonNotFoundError Bases: :py:obj:`GlpkgError` glpkg.json could not be found .. py:exception:: PackageNotFoundError(package_name: str) Bases: :py:obj:`GlpkgError` A generic error for all errors that are handled in :func:`glpkg.app.run()`, e.g. missing file or key. .. py:exception:: PackageFileNotFoundError(path: pathlib.Path) Bases: :py:obj:`GlpkgError` A generic error for all errors that are handled in :func:`glpkg.app.run()`, e.g. missing file or key. .. py:exception:: BuildCommandError(error: subprocess.CalledProcessError) Bases: :py:obj:`GlpkgError` A generic error for all errors that are handled in :func:`glpkg.app.run()`, e.g. missing file or key. .. py:exception:: PackageNotBuiltError(command: List[str], package_path: pathlib.Path) Bases: :py:obj:`GlpkgError` A generic error for all errors that are handled in :func:`glpkg.app.run()`, e.g. missing file or key. .. py:exception:: UndefinedVariableError(name: str, package_name: Optional[str] = None) Bases: :py:obj:`GlpkgError` A generic error for all errors that are handled in :func:`glpkg.app.run()`, e.g. missing file or key. .. py:exception:: ErrorResponse(status_code: int, message: Optional[str]) Bases: :py:obj:`GlpkgError` A generic error for all errors that are handled in :func:`glpkg.app.run()`, e.g. missing file or key.