예제 #1
0
 /** {@inheritDoc} */
 @MethodLog
 public void deleteStorage(StorageData storageData) throws StorageException {
   try {
     storageManager.deleteStorage(storageData);
   } catch (IOException e) {
     throw new StorageException(
         "Exception occurred trying to delete storage" + storageData + ".", e);
   }
 }