https://forge.softwareheritage.org/source/swh-scheduler.git
Raw File
Tip revision: 189d845518e7ae1ce0be5194f6244d8e51d00bbe authored by Jenkins for Software Heritage on 06 July 2020, 10:23:30 UTC
New upstream version 0.3.0
Tip revision: 189d845
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