https://forge.softwareheritage.org/source/swh-scheduler.git
Raw File
Tip revision: 7a6149f2d0ea5ce8dd95889c616428e857d6c0b5 authored by Jenkins for Software Heritage on 09 July 2020, 09:51:36 UTC
New upstream version 0.5.1
Tip revision: 7a6149f
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",
]


class SchedulerException(Exception):
    pass


class StaleData(SchedulerException):
    pass
back to top