| 121 | |
| 122 | |
| 123 | class FeatureViewNotFoundException(FeastObjectNotFoundException): |
| 124 | def __init__(self, name, project=None): |
| 125 | if project: |
| 126 | super().__init__(f"Feature view {name} does not exist in project {project}") |
| 127 | else: |
| 128 | super().__init__(f"Feature view {name} does not exist") |
| 129 | |
| 130 | |
| 131 | class FeatureViewVersionNotFound(FeastObjectNotFoundException): |
no outgoing calls