| 185 | |
| 186 | |
| 187 | class DataSourceObjectNotFoundException(FeastObjectNotFoundException): |
| 188 | def __init__(self, name, project=None): |
| 189 | if project: |
| 190 | super().__init__(f"Data source {name} does not exist in project {project}") |
| 191 | else: |
| 192 | super().__init__(f"Data source {name} does not exist") |
| 193 | |
| 194 | |
| 195 | class S3RegistryBucketNotExist(FeastObjectNotFoundException): |
no outgoing calls
no test coverage detected