| 103 | |
| 104 | |
| 105 | class EntityNotFoundException(FeastObjectNotFoundException): |
| 106 | def __init__(self, name, project=None): |
| 107 | if project: |
| 108 | super().__init__(f"Entity {name} does not exist in project {project}") |
| 109 | else: |
| 110 | super().__init__(f"Entity {name} does not exist") |
| 111 | |
| 112 | |
| 113 | class FeatureServiceNotFoundException(FeastObjectNotFoundException): |
no outgoing calls
no test coverage detected