| 193 | |
| 194 | |
| 195 | class S3RegistryBucketNotExist(FeastObjectNotFoundException): |
| 196 | def __init__(self, bucket): |
| 197 | super().__init__(f"S3 bucket {bucket} for the Feast registry does not exist") |
| 198 | |
| 199 | |
| 200 | class S3RegistryBucketForbiddenAccess(FeastObjectNotFoundException): |