| 434 | |
| 435 | |
| 436 | class InvalidEntityType(FeastError): |
| 437 | def __init__(self, entity_type: type): |
| 438 | super().__init__( |
| 439 | f"The entity dataframe you have provided must be a Pandas DataFrame or a SQL query, " |
| 440 | f"but we found: {entity_type} " |
| 441 | ) |
| 442 | |
| 443 | |
| 444 | class ConflictingFeatureViewNames(FeastError): |
no outgoing calls
no test coverage detected