Merge branch 'develop' of https://source.jalview.org/git/jalview.git into menard
[jalview.git] / src / jalview / io / TCoffeeScoreFile.java
index 9c75878..45bfd43 100644 (file)
@@ -19,6 +19,14 @@ import java.util.LinkedHashMap;
 import java.util.List;
 import java.util.Map;
 
+import javax.xml.parsers.ParserConfigurationException;
+
+import org.xml.sax.SAXException;
+
+import fr.orsay.lri.varna.exceptions.ExceptionFileFormatOrSyntax;
+import fr.orsay.lri.varna.exceptions.ExceptionLoadingFailed;
+import fr.orsay.lri.varna.exceptions.ExceptionPermissionDenied;
+
 /**
  * A file parse for T-Coffee score ascii format. This file contains the alignment consensus 
  * for each resude in any sequence.
@@ -74,13 +82,13 @@ import java.util.Map;
  */
 public class TCoffeeScoreFile extends AlignFile {
        
-  public TCoffeeScoreFile(String inFile, String type) throws IOException
+  public TCoffeeScoreFile(String inFile, String type) throws IOException, ExceptionFileFormatOrSyntax, ParserConfigurationException, SAXException, ExceptionPermissionDenied, ExceptionLoadingFailed, InterruptedException
   {
     super(inFile, type);
     
   }
 
-  public TCoffeeScoreFile(FileParse source) throws IOException
+  public TCoffeeScoreFile(FileParse source) throws IOException, ExceptionFileFormatOrSyntax, ParserConfigurationException, SAXException, ExceptionPermissionDenied, ExceptionLoadingFailed, InterruptedException
   {
     super(source);
   }