public void deleteBlob(String container, String blob,
DeleteBlobOptions options) throws ServiceException {
try {
service.deleteBlob(container, blob, options);
} catch (UniformInterfaceException e) {
throw processCatch(new ServiceException(e));
} catch (ClientHandlerException e) {
throw processCatch(new ServiceException(e));
}
}