Source code for feast.errors

from colorama import Fore, Style


[docs]class FeastObjectNotFoundException(Exception): pass
[docs]class EntityNotFoundException(FeastObjectNotFoundException): def __init__(self, name, project=None): if project: super().__init__(f"Entity {name} does not exist in project {project}") else: super().__init__(f"Entity {name} does not exist")
[docs]class FeatureViewNotFoundException(FeastObjectNotFoundException): def __init__(self, name, project=None): if project: super().__init__(f"Feature view {name} does not exist in project {project}") else: super().__init__(f"Feature view {name} does not exist")
[docs]class FeatureTableNotFoundException(FeastObjectNotFoundException): def __init__(self, name, project=None): if project: super().__init__( f"Feature table {name} does not exist in project {project}" ) else: super().__init__(f"Feature table {name} does not exist")
[docs]class FeastProviderLoginError(Exception): """Error class that indicates a user has not authenticated with their provider."""
[docs]class FeastProviderNotImplementedError(Exception): def __init__(self, provider_name): super().__init__(f"Provider '{provider_name}' is not implemented")
[docs]class FeastProviderModuleImportError(Exception): def __init__(self, module_name): super().__init__(f"Could not import provider module '{module_name}'")
[docs]class FeastProviderClassImportError(Exception): def __init__(self, module_name, class_name): super().__init__( f"Could not import provider '{class_name}' from module '{module_name}'" )
[docs]class FeastExtrasDependencyImportError(Exception): def __init__(self, extras_type: str, nested_error: str): message = ( nested_error + "\n" + f"You may need run {Style.BRIGHT + Fore.GREEN}pip install 'feast[{extras_type}]'{Style.RESET_ALL}" ) super().__init__(message)
[docs]class FeastOfflineStoreUnsupportedDataSource(Exception): def __init__(self, offline_store_name: str, data_source_name: str): super().__init__( f"Offline Store '{offline_store_name}' does not support data source '{data_source_name}'" )
[docs]class FeastEntityDFMissingColumnsError(Exception): def __init__(self, expected, missing): super().__init__( f"The entity dataframe you have provided must contain columns {expected}, " f"but {missing} were missing." )