Revision 3b15362e1d016b61d4fa152056c504b32a6b0748 authored by dependabot[bot] on 04 October 2023, 11:55:22 UTC, committed by GitHub on 04 October 2023, 11:55:22 UTC
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent b2b4974
Raw File
errors.py
# Copyright (C) 2023 CVAT.ai Corporation
#
# SPDX-License-Identifier: MIT

class BasicError(Exception):
    """
    The basic exception type for all exceptions in the library
    """

class InvalidVideoFrameError(BasicError):
    """
    Indicates an invalid video frame
    """

class InvalidManifestError(BasicError):
    """
    Indicates an invalid manifest
    """
back to top