https://forge.softwareheritage.org/source/swh-scheduler.git
Raw File
Tip revision: 4b316faf29f6493016e0ac7459be9e8a1d8a1a12 authored by David Douard on 07 July 2023, 14:51:48 UTC
Fix mypy/click: add swh.core[testing] in requirements-test.txt
Tip revision: 4b316fa
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