Bump upstreams for 2022.09 Chlorine
[ovsdb.git] / hwvtepsouthbound / hwvtepsouthbound-impl / src / main / java / org / opendaylight / ovsdb / hwvtepsouthbound / HwvtepSouthboundUtil.java
index dfc112e269e68e4e86ae0e3e6273bcc96367e23c..27e2435d10069df94259e603e0fe149bf29de34a 100644 (file)
@@ -100,7 +100,7 @@ public final class HwvtepSouthboundUtil {
             return transaction.read(logicalDatastoreType, connectionIid).get();
         } catch (InterruptedException | ExecutionException e) {
             LOG.error("Read failed from datastore for Node : {}",connectionIid,e);
-            throw new RuntimeException(e);
+            throw new IllegalStateException(e);
         }
     }
 
@@ -119,7 +119,7 @@ public final class HwvtepSouthboundUtil {
             return transaction.read(logicalDatastoreType, connectionIid).get();
         } catch (InterruptedException | ExecutionException e) {
             LOG.error("Read failed from datastore for Node : {}",connectionIid,e);
-            throw new RuntimeException(e);
+            throw new IllegalStateException(e);
         }
     }
 
@@ -143,7 +143,7 @@ public final class HwvtepSouthboundUtil {
             return transaction.read(logicalDatastoreType, connectionIid).get();
         } catch (InterruptedException | ExecutionException e) {
             LOG.error("Read failed from datastore for Node : {}",connectionIid,e);
-            throw new RuntimeException(e);
+            throw new IllegalStateException(e);
         }
     }