Blame dnf/module/exceptions.py

Packit Service 21c75c
# supplies the 'module' command.
Packit Service 21c75c
#
Packit Service 21c75c
# Copyright (C) 2014-2017  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
import dnf
Packit Service 21c75c
from dnf.module import module_messages, NO_PROFILE_SPECIFIED
Packit Service 21c75c
from dnf.i18n import _
Packit Service 21c75c
Packit Service 21c75c
Packit Service 21c75c
class NoModuleException(dnf.exceptions.Error):
Packit Service 21c75c
    def __init__(self, module_spec):
Packit Service 21c75c
        value = "No such module: {}".format(module_spec)
Packit Service 21c75c
        super(NoModuleException, self).__init__(value)
Packit Service 21c75c
Packit Service 21c75c
Packit Service 21c75c
class NoStreamException(dnf.exceptions.Error):
Packit Service 21c75c
    def __init__(self, stream):
Packit Service 21c75c
        value = "No such stream: {}".format(stream)
Packit Service 21c75c
        super(NoStreamException, self).__init__(value)
Packit Service 21c75c
Packit Service 21c75c
Packit Service 21c75c
class EnabledStreamException(dnf.exceptions.Error):
Packit Service 21c75c
    def __init__(self, module_spec):
Packit Service 21c75c
        value = "No enabled stream for module: {}".format(module_spec)
Packit Service 21c75c
        super(EnabledStreamException, self).__init__(value)
Packit Service 21c75c
Packit Service 21c75c
Packit Service 21c75c
class EnableMultipleStreamsException(dnf.exceptions.Error):
Packit Service 21c75c
    def __init__(self, module_spec):
Packit Service 21c75c
        value = "Cannot enable more streams from module '{}' at the same time".format(module_spec)
Packit Service 21c75c
        super(EnableMultipleStreamsException, self).__init__(value)
Packit Service 21c75c
Packit Service 21c75c
Packit Service 21c75c
class DifferentStreamEnabledException(dnf.exceptions.Error):
Packit Service 21c75c
    def __init__(self, module_spec):
Packit Service 21c75c
        value = "Different stream enabled for module: {}".format(module_spec)
Packit Service 21c75c
        super(DifferentStreamEnabledException, self).__init__(value)
Packit Service 21c75c
Packit Service 21c75c
Packit Service 21c75c
class NoProfileException(dnf.exceptions.Error):
Packit Service 21c75c
    def __init__(self, profile):
Packit Service 21c75c
        value = "No such profile: {}".format(profile)
Packit Service 21c75c
        super(NoProfileException, self).__init__(value)
Packit Service 21c75c
Packit Service 21c75c
Packit Service 21c75c
class ProfileNotInstalledException(dnf.exceptions.Error):
Packit Service 21c75c
    def __init__(self, module_spec):
Packit Service 21c75c
        value = "Specified profile not installed for {}".format(module_spec)
Packit Service 21c75c
        super(ProfileNotInstalledException, self).__init__(value)
Packit Service 21c75c
Packit Service 21c75c
Packit Service 21c75c
class NoStreamSpecifiedException(dnf.exceptions.Error):
Packit Service 21c75c
    def __init__(self, module_spec):
Packit Service 21c75c
        value = "No stream specified for '{}', please specify stream".format(module_spec)
Packit Service 21c75c
        super(NoStreamSpecifiedException, self).__init__(value)
Packit Service 21c75c
Packit Service 21c75c
Packit Service 21c75c
class NoProfileSpecifiedException(dnf.exceptions.Error):
Packit Service 21c75c
    def __init__(self, module_spec):
Packit Service 21c75c
        value = module_messages[NO_PROFILE_SPECIFIED].format(module_spec)
Packit Service 21c75c
        super(NoProfileSpecifiedException, self).__init__(value)
Packit Service 21c75c
Packit Service 21c75c
Packit Service 21c75c
class NoProfilesException(dnf.exceptions.Error):
Packit Service 21c75c
    def __init__(self, module_spec):
Packit Service 21c75c
        value = "No such profile: {}. No profiles available".format(module_spec)
Packit Service 21c75c
        super(NoProfilesException, self).__init__(value)
Packit Service 21c75c
Packit Service 21c75c
Packit Service 21c75c
class NoProfileToRemoveException(dnf.exceptions.Error):
Packit Service 21c75c
    def __init__(self, module_spec):
Packit Service 21c75c
        value = "No profile to remove for '{}'".format(module_spec)
Packit Service 21c75c
        super(NoProfileToRemoveException, self).__init__(value)