https://forge.softwareheritage.org/source/swh-scheduler.git
Raw File
Tip revision: e56fc4d1edcaf712a60fb7884a00fe62e469ef4e authored by Antoine Lambert on 12 May 2022, 09:08:09 UTC
interface: Return enabled origins only by default in get_listed_origins
Tip revision: e56fc4d
exc.py
# Copyright (C) 2020  The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information

__all__ = [
    "SchedulerException",
    "StaleData",
    "UnknownPolicy",
]


class SchedulerException(Exception):
    pass


class StaleData(SchedulerException):
    pass


class UnknownPolicy(SchedulerException):
    pass
back to top