Source code for kwcoco.exceptions

[docs]class AddError(ValueError): """ Generic error when trying to add a category/annotation/image """ pass
[docs]class DuplicateAddError(ValueError): """ Error when trying to add a duplicate item """ pass
[docs]class InvalidAddError(ValueError): """ Error when trying to invalid data """ pass
[docs]class CoordinateCompatibilityError(ValueError): """ Error when trying to perform operations on data in different coordinate systems. """ pass