https://forge.softwareheritage.org/source/swh-scheduler.git
Raw File
Tip revision: d03f925c2ca0021b9007981471f5ddd95c9f25cf authored by Phabricator Migration user on 06 January 2023, 22:44:00 UTC
Merge branch 'generated-differential-D7697-source' into 'generated-differential-D7697-target'
Tip revision: d03f925
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