This commit is contained in:
Lukas Rieger (Blue) 2022-07-31 22:00:30 +02:00
parent 5271025933
commit 77b7854d0f
No known key found for this signature in database
GPG Key ID: 2D09EC5ED2687FF2

View File

@ -263,7 +263,7 @@ public synchronized Storage getStorage(String storageId) throws ConfigurationExc
storage = storageConfig.createStorage(); storage = storageConfig.createStorage();
storage.initialize(); storage.initialize();
} catch (Exception ex) { } catch (Exception ex) {
throw new ConfigurationException("Failed to load and initialize the storage '" + storageId + "' for!", throw new ConfigurationException("Failed to load and initialize the storage '" + storageId + "'!",
ex); ex);
} }