MCPcopy Index your code
hub / github.com/feast-dev/feast / EntityNotFoundException

Class EntityNotFoundException

sdk/python/feast/errors.py:105–110  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

103
104
105class EntityNotFoundException(FeastObjectNotFoundException):
106 def __init__(self, name, project=None):
107 if project:
108 super().__init__(f"Entity {name} does not exist in project {project}")
109 else:
110 super().__init__(f"Entity {name} does not exist")
111
112
113class FeatureServiceNotFoundException(FeastObjectNotFoundException):

Callers 3

_get_entity_mapsFunction · 0.90
get_entityFunction · 0.90
delete_entityMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected