// Arrange
Configuration config = createConfiguration();
BlobContract service = BlobService.create(config);
// Act
service = service.withFilter(new RetryPolicyFilter(
new ExponentialRetryPolicy(100/* deltaBackoff */,
3/* maximumAttempts */, new int[] { 403 })));
ServiceException error = null;
ResetableInputStream stream = null;