result = storageService.getObject(
bucketName, objectKey);
}
} catch (ServiceException e) {
if (this.errorPermitter != null && this.errorPermitter.isPermitted(e)) {
result = new ThrowableBearingStorageObject(this.objectKey, e);
} else {
result = e;
}
}
}