| 171 | |
| 172 | |
| 173 | class RequestDataNotFoundInEntityDfException(FeastObjectNotFoundException): |
| 174 | def __init__(self, feature_name, feature_view_name): |
| 175 | super().__init__( |
| 176 | f"Feature {feature_name} not found in the entity dataframe, but required by feature view {feature_view_name}" |
| 177 | ) |
| 178 | |
| 179 | |
| 180 | class RequestDataNotFoundInEntityRowsException(FeastObjectNotFoundException): |
no outgoing calls
no test coverage detected