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

Class DataSourceObjectNotFoundException

sdk/python/feast/errors.py:187–192  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

185
186
187class DataSourceObjectNotFoundException(FeastObjectNotFoundException):
188 def __init__(self, name, project=None):
189 if project:
190 super().__init__(f"Data source {name} does not exist in project {project}")
191 else:
192 super().__init__(f"Data source {name} does not exist")
193
194
195class S3RegistryBucketNotExist(FeastObjectNotFoundException):

Callers 2

get_data_sourceFunction · 0.90
delete_data_sourceMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected