class BucketNotFound(Exception):
    def __init__(self, bucket_name):
        message = "Could not find the bucket: {}".format(bucket_name)
        super(BucketNotFound, self).__init__(message)