Remove unused exceptions
[netconf.git] / netconf / tools / netconf-testtool / src / main / java / org / opendaylight / netconf / test / tool / ScaleUtil.java
index 3f275681aae80eac644e285b975ac5e383b9d952..f67c96e2f4399de2c4fffaccd43b76a1f5d9f849 100644 (file)
@@ -259,7 +259,7 @@ public final class ScaleUtil {
 
     private static class TimeoutGuard implements Callable<Void> {
         @Override
-        public Void call() throws Exception {
+        public Void call() {
             resultsLog.warn("Timeout for scale test reached after: {} ..aborting", STOPWATCH);
             root.warn("Timeout for scale test reached after: {} ..aborting", STOPWATCH);
             System.exit(0);
@@ -286,7 +286,7 @@ public final class ScaleUtil {
             }
 
             @Override
-            public T call() throws Exception {
+            public T call() {
                 try {
                     return theCallable.call();
                 } catch (Exception e) {