JAL-2349 formatting/pick correct exception
authorJim Procter <j.procter@dundee.ac.uk>
Thu, 20 Oct 2022 20:00:49 +0000 (21:00 +0100)
committerJim Procter <j.procter@dundee.ac.uk>
Thu, 20 Oct 2022 20:00:49 +0000 (21:00 +0100)
src/jalview/datamodel/ContactMatrix.java
test/jalview/datamodel/ContactMatrixTest.java

index 2968ab9..de7cba4 100644 (file)
@@ -1,7 +1,5 @@
 package jalview.datamodel;
 
-import jalview.ws.params.InvalidArgumentException;
-
 import java.util.ArrayList;
 import java.util.List;
 
@@ -27,7 +25,7 @@ public class ContactMatrix implements ContactMatrixI
   {
     if (left < 0 || right < 0)
     {
-      throw new Error(new InvalidArgumentException(
+      throw new Error(new RuntimeException(
               "Cannot have negative indices for contact left=" + left
                       + " right=" + right + " strength=" + strength));
     }
@@ -73,7 +71,6 @@ public class ContactMatrix implements ContactMatrixI
     }
   }
 
-
   @Override
   public ContactListI getContactList(final int column)
   {
index 5d8b8d1..43be888 100644 (file)
@@ -1,11 +1,11 @@
 package jalview.datamodel;
 
-import jalview.gui.JvOptionPane;
-
 import org.testng.Assert;
 import org.testng.annotations.BeforeClass;
 import org.testng.annotations.Test;
 
+import jalview.gui.JvOptionPane;
+
 public class ContactMatrixTest
 {
   @BeforeClass(alwaysRun = true)