https://forge.softwareheritage.org/source/swh-scheduler.git
Raw File
Tip revision: d8bc426aea774815a57847b27911900175bf8140 authored by Jenkins for Software Heritage on 03 June 2022, 13:47:47 UTC
Updated debian changelog for version 1.2.0
Tip revision: d8bc426
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