JAL-3066 Remove redundant throws declaration from SlivkaParamSet constructor.
[jalview.git] / src / jalview / ws / slivkaws / SlivkaWSInstance.java
index 80e928a..613c702 100644 (file)
@@ -231,13 +231,7 @@ public abstract class SlivkaWSInstance extends ServiceWithParameters
   {
     if (store == null)
     {
-      try
-      {
-        store = new SlivkaDatastore(service);
-      } catch (IOException e)
-      {
-        throw new IOError(e);
-      }
+      store = new SlivkaDatastore(service);
     }
   }