Source code for large_image_source_tiff.exceptions

[docs] class TiffError(Exception): pass
[docs] class InvalidOperationTiffError(TiffError): """ An exception caused by the user making an invalid request of a TIFF file. """
[docs] class IOTiffError(TiffError): """ An exception caused by an internal failure, due to an invalid file or other error. """
[docs] class IOOpenTiffError(IOTiffError): """ An exception caused by an internal failure where the file cannot be opened by the main library. """
[docs] class ValidationTiffError(TiffError): """ An exception caused by the TIFF reader not being able to support a given file. """