| 309 | |
| 310 | |
| 311 | class SavedDatasetLocationAlreadyExists(FeastError): |
| 312 | def __init__(self, location: str): |
| 313 | super().__init__(f"Saved dataset location {location} already exists.") |
| 314 | |
| 315 | |
| 316 | class FeastOfflineStoreInvalidName(FeastError): |
no outgoing calls
no test coverage detected