| 198 | |
| 199 | |
| 200 | class S3RegistryBucketForbiddenAccess(FeastObjectNotFoundException): |
| 201 | def __init__(self, bucket): |
| 202 | super().__init__(f"S3 bucket {bucket} for the Feast registry can't be accessed") |
| 203 | |
| 204 | |
| 205 | class SavedDatasetNotFound(FeastObjectNotFoundException): |