hgext/fastannotate/error.py
author Arseniy Alekseyev <aalekseyev@janestreet.com>
Wed, 11 Jan 2023 16:16:06 +0000
changeset 49890 5f664401dd03
parent 48875 6000f5b25c9b
permissions -rw-r--r--
typing: use python3-style type annotation

# Copyright 2016-present Facebook. All Rights Reserved.
#
# error: errors used in fastannotate
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.


class CorruptedFileError(Exception):
    pass


class CannotReuseError(Exception):
    """cannot reuse or update the cache incrementally"""