X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2FFeaturesFile.java;h=6958923c2161212d66f7534fd72ab0e397ff2e44;hb=a7f8fa9c06d82efbbdbc6a0bf1054bb21610b353;hp=2ac0e13458f32eb1076948cc6a5332bee5191504;hpb=54b98888f691a29c2bdeedcfc120036e921e73d6;p=jalview.git diff --git a/src/jalview/io/FeaturesFile.java b/src/jalview/io/FeaturesFile.java index 2ac0e13..6958923 100755 --- a/src/jalview/io/FeaturesFile.java +++ b/src/jalview/io/FeaturesFile.java @@ -20,6 +20,14 @@ package jalview.io; import java.io.*; import java.util.*; +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; + import jalview.analysis.SequenceIdMatcher; import jalview.datamodel.*; import jalview.schemes.*; @@ -59,13 +67,18 @@ public class FeaturesFile extends AlignFile * * @throws IOException * DOCUMENT ME! + * @throws SAXException + * @throws ParserConfigurationException + * @throws ExceptionFileFormatOrSyntax + * @throws ExceptionLoadingFailed + * @throws ExceptionPermissionDenied */ - public FeaturesFile(String inFile, String type) throws IOException + public FeaturesFile(String inFile, String type) throws IOException, ExceptionFileFormatOrSyntax, ParserConfigurationException, SAXException, ExceptionPermissionDenied, ExceptionLoadingFailed { super(inFile, type); } - public FeaturesFile(FileParse source) throws IOException + public FeaturesFile(FileParse source) throws IOException, ExceptionFileFormatOrSyntax, ParserConfigurationException, SAXException, ExceptionPermissionDenied, ExceptionLoadingFailed { super(source); }