https://forge.softwareheritage.org/source/swh-scheduler.git
Raw File
Tip revision: c7707b5c836c3f58bace115eb398599a989845aa authored by Antoine R. Dumont (@ardumont) on 08 June 2021, 15:36:28 UTC
runner: Separate scheduling tasks with and without priority concern
Tip revision: c7707b5
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