| 427 | |
| 428 | |
| 429 | class FeatureViewMissingDuringFeatureServiceInference(FeastError): |
| 430 | def __init__(self, feature_view_name: str, feature_service_name: str): |
| 431 | super().__init__( |
| 432 | f"Missing {feature_view_name} feature view during inference for {feature_service_name} feature service." |
| 433 | ) |
| 434 | |
| 435 | |
| 436 | class InvalidEntityType(FeastError): |