# landstac/exceptions.py"""Package-specific exceptions for landstac.These exceptions make it easier to catch and handle common failure modessuch as authentication issues, STAC search errors, and download problems."""
[docs]classAuthError(RuntimeError):"""Authentication failed or session is not authorized for the requested resource."""
[docs]classDownloadError(RuntimeError):"""Download failed or the remote server returned an error."""
[docs]classStacError(RuntimeError):"""STAC query failed or returned unexpected results."""