| 84 | |
| 85 | |
| 86 | class DataSourceRepeatNamesException(FeastError): |
| 87 | def __init__(self, ds_name: str): |
| 88 | super().__init__( |
| 89 | f"Multiple data sources share the same case-insensitive name {ds_name}." |
| 90 | ) |
| 91 | |
| 92 | |
| 93 | class FeastObjectNotFoundException(FeastError): |
no outgoing calls
no test coverage detected