https://forge.softwareheritage.org/source/swh-scheduler.git
Raw File
Tip revision: 9beef90f77cea76353a40d75d304c4b6a5c3e1e0 authored by Antoine R. Dumont (@ardumont) on 30 January 2023, 16:05:17 UTC
Configure logging from environment variable SWH_LOG_CONFIG
Tip revision: 9beef90
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