https://forge.softwareheritage.org/source/swh-scheduler.git
Raw File
Tip revision: 23dc6fb3edd15427b08e4bd966a9cefc67dd80a9 authored by David Douard on 03 December 2023, 17:36:44 UTC
Apply swh-py-template 0.1.6
Tip revision: 23dc6fb
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