Source code for eodag.utils.exceptions

# -*- coding: utf-8 -*-
# Copyright 2018, CS GROUP - France, https://www.csgroup.eu/
#
# This file is part of EODAG project
#     https://www.github.com/CS-SI/EODAG
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import annotations

from typing import TYPE_CHECKING

if TYPE_CHECKING:
    from typing import Optional, Set, Tuple


[docs]class ValidationError(Exception): """Error validating data""" def __init__(self, message: str) -> None: self.message = message
[docs]class PluginNotFoundError(Exception): """Error when looking for a plugin class that was not defined"""
[docs]class PluginImplementationError(Exception): """Error when a plugin does not behave as expected"""
[docs]class MisconfiguredError(Exception): """An error indicating a Search Plugin that is not well configured"""
[docs]class AddressNotFound(Exception): """An error indicating the address of a subdataset was not found"""
[docs]class UnsupportedProvider(Exception): """An error indicating that eodag does not support a provider"""
[docs]class UnsupportedProductType(Exception): """An error indicating that eodag does not support a product type""" def __init__(self, product_type: str) -> None: self.product_type = product_type
[docs]class UnsupportedDatasetAddressScheme(Exception): """An error indicating that eodag does not yet support an address scheme for accessing raster subdatasets"""
[docs]class AuthenticationError(Exception): """An error indicating that an authentication plugin did not succeeded authenticating a user"""
[docs]class DownloadError(Exception): """An error indicating something wrong with the download process"""
[docs]class NotAvailableError(Exception): """An error indicating that the product is not available for download"""
[docs]class RequestError(Exception): """An error indicating that a request has failed. Usually eodag functions and methods should catch and skip this""" history: Set[Tuple[Exception, str]] = set() def __str__(self): repr = super().__str__() for err_tuple in self.history: repr += f"\n- {str(err_tuple)}" return repr
[docs]class NoMatchingProductType(Exception): """An error indicating that eodag was unable to derive a product type from a set of search parameters"""
[docs]class STACOpenerError(Exception): """An error indicating that a STAC file could not be opened"""
[docs]class TimeOutError(RequestError): """An error indicating that a timeout has occurred""" def __init__( self, exception: Optional[Exception] = None, timeout: Optional[float] = None ) -> None: url = getattr(getattr(exception, "request", None), "url", None) timeout_msg = f"({timeout}s)" if timeout else "" message = ( f"Request timeout {timeout_msg} for URL {url}" if url else str(exception) ) super().__init__(message)