Blame doc/api_exceptions.rst

Packit Service 21c75c
..
Packit Service 21c75c
  Copyright (C) 2014-2018 Red Hat, Inc.
Packit Service 21c75c
Packit Service 21c75c
  This copyrighted material is made available to anyone wishing to use,
Packit Service 21c75c
  modify, copy, or redistribute it subject to the terms and conditions of
Packit Service 21c75c
  the GNU General Public License v.2, or (at your option) any later version.
Packit Service 21c75c
  This program is distributed in the hope that it will be useful, but WITHOUT
Packit Service 21c75c
  ANY WARRANTY expressed or implied, including the implied warranties of
Packit Service 21c75c
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
Packit Service 21c75c
  Public License for more details.  You should have received a copy of the
Packit Service 21c75c
  GNU General Public License along with this program; if not, write to the
Packit Service 21c75c
  Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
Packit Service 21c75c
  02110-1301, USA.  Any Red Hat trademarks that are incorporated in the
Packit Service 21c75c
  source code or documentation are not subject to the GNU General Public
Packit Service 21c75c
  License and may only be used or replicated with the express permission of
Packit Service 21c75c
  Red Hat, Inc.
Packit Service 21c75c
Packit Service 21c75c
============
Packit Service 21c75c
 Exceptions
Packit Service 21c75c
============
Packit Service 21c75c
Packit Service 21c75c
.. exception:: dnf.exceptions.Error
Packit Service 21c75c
Packit Service 21c75c
  Base class for all DNF Errors.
Packit Service 21c75c
Packit Service 21c75c
.. exception:: dnf.exceptions.CompsError
Packit Service 21c75c
Packit Service 21c75c
  Used for errors of comps groups like trying to work with group which is not available.
Packit Service 21c75c
Packit Service 21c75c
.. exception:: dnf.exceptions.DeprecationWarning
Packit Service 21c75c
Packit Service 21c75c
  Used to emit deprecation warnings using Python's :func:`warnings.warning` function.
Packit Service 21c75c
Packit Service 21c75c
.. exception:: dnf.exceptions.DepsolveError
Packit Service 21c75c
Packit Service 21c75c
  Error during transaction dependency resolving.
Packit Service 21c75c
Packit Service 21c75c
.. exception:: dnf.exceptions.DownloadError
Packit Service 21c75c
Packit Service 21c75c
  Error during downloading packages from the repositories.
Packit Service 21c75c
Packit Service 21c75c
.. exception:: dnf.exceptions.MarkingError
Packit Service 21c75c
Packit Service 21c75c
  Error when DNF was unable to find a match for given package / group / module specification.
Packit Service 21c75c
Packit Service 21c75c
.. exception:: dnf.exceptions.MarkingErrors
Packit Service 21c75c
Packit Service 21c75c
  Categorized errors during processing of the request. The available error categories are ``no_match_pkg_specs`` for missing packages, ``error_pkg_specs`` for broken packages, ``no_match_group_specs`` for missing groups or modules, ``error_group_specs`` for broken groups or modules and ``module_depsolv_errors`` for modular dependency problems.
Packit Service 21c75c
Packit Service 21c75c
.. exception:: dnf.exceptions.RepoError
Packit Service 21c75c
Packit Service 21c75c
  Error when loading repositories.