X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2FTCoffeeScoreFile.java;h=45bfd43967f315da9ba58911db0647fd1d798e7d;hb=575a2cafa208004f49d91fe56da0fac56be60455;hp=9c75878fe81140244485f5ab3f9e5f876b272f19;hpb=b1c9b42f08c639868c2509dffacdf29f299c5f0d;p=jalview.git diff --git a/src/jalview/io/TCoffeeScoreFile.java b/src/jalview/io/TCoffeeScoreFile.java index 9c75878..45bfd43 100644 --- a/src/jalview/io/TCoffeeScoreFile.java +++ b/src/jalview/io/TCoffeeScoreFile.java @@ -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); }