aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/main/java/org/onap/dcae/inventory/daos/InventoryDAOManager.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/org/onap/dcae/inventory/daos/InventoryDAOManager.java b/src/main/java/org/onap/dcae/inventory/daos/InventoryDAOManager.java
index 717d8c9..c2527e2 100644
--- a/src/main/java/org/onap/dcae/inventory/daos/InventoryDAOManager.java
+++ b/src/main/java/org/onap/dcae/inventory/daos/InventoryDAOManager.java
@@ -140,7 +140,7 @@ public final class InventoryDAOManager {
private InventoryDAO getDAO(Class<? extends InventoryDAO> klass) {
if (jdbi == null) {
- throw new RuntimeException("InventoryDAOManager has not been initialized!");
+ throw new InventoryDAOManagerSetupException("InventoryDAOManager has not been initialized!");
}
// Using this approach to constructing the DAO, the client is not responsible for closing the handle.