MCPcopy
hub / github.com/feast-dev/feast / FeatureViewNotFoundException

Class FeatureViewNotFoundException

sdk/python/feast/errors.py:123–128  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

121
122
123class FeatureViewNotFoundException(FeastObjectNotFoundException):
124 def __init__(self, name, project=None):
125 if project:
126 super().__init__(f"Feature view {name} does not exist in project {project}")
127 else:
128 super().__init__(f"Feature view {name} does not exist")
129
130
131class FeatureViewVersionNotFound(FeastObjectNotFoundException):

Callers 15

_group_feature_refsFunction · 0.90
get_any_feature_viewFunction · 0.90
get_feature_viewFunction · 0.90
get_stream_feature_viewFunction · 0.90
get_label_viewFunction · 0.90
delete_label_viewMethod · 0.90
delete_feature_viewMethod · 0.90
delete_feature_viewMethod · 0.90
apply_user_metadataMethod · 0.90
get_user_metadataMethod · 0.90

Calls

no outgoing calls