예제 #1
0
 /**
  * Creates the new storage on the CMR with information given in {@link StorageData} object.
  *
  * @param storageData Information about new storage.
  * @throws StorageException When storage creation fails.
  */
 @MethodLog
 public void createStorage(StorageData storageData) throws StorageException {
   try {
     storageManager.createStorage(storageData);
   } catch (Exception e) {
     throw new StorageException(
         "Exception occurred trying to create storage" + storageData + ".", e);
   }
 }