https://forge.softwareheritage.org/source/swh-scheduler.git
Raw File
Tip revision: 45c80831a2944bbef33e97e1b08455b39062eb86 authored by Jenkins for Software Heritage on 17 August 2023, 13:30:36 UTC
Updated debian changelog for version 1.10.0
Tip revision: 45c8083
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