* the exception
*/
public static DataStoreBlobStore getBlobStore() throws Exception {
BlobStoreConfiguration config =
BlobStoreConfiguration.newInstance().loadFromSystemProps();
config.addProperty(
BlobStoreConfiguration.PROP_BLOB_STORE_PROVIDER, DataStoreBlobStore.class.getName());
config.addProperty("path", PATH + "datastore");
return (DataStoreBlobStore) BlobStoreHelper.create(config).orNull();
}
}