https://forge.softwareheritage.org/source/swh-scheduler.git
Raw File
Tip revision: 83d25c5194ceb519e748d4f027a30e91471109fc authored by Jenkins for Software Heritage on 28 October 2021, 11:15:10 UTC
Updated debian changelog for version 0.19.0
Tip revision: 83d25c5
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