https://forge.softwareheritage.org/source/swh-scheduler.git
Raw File
Tip revision: 17052c4cfa39f7e53e4f7392586b9cd3bf84cba3 authored by Antoine R. Dumont (@ardumont) on 14 April 2021, 10:49:47 UTC
Route priority tasks to dedicated save code now queues
Tip revision: 17052c4
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