https://forge.softwareheritage.org/source/swh-scheduler.git
Raw File
Tip revision: 8281e351d6a13a55711fca5b89c7f24c71174dab authored by Antoine R. Dumont (@ardumont) on 08 July 2021, 09:24:42 UTC
journal_client: Disable origins when too many visited attempts failed
Tip revision: 8281e35
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