htsjdk.samtools.util.htsget.HtsgetMalformedResponseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of htsjdk Show documentation
Show all versions of htsjdk Show documentation
A Java API for high-throughput sequencing data (HTS) formats
package htsjdk.samtools.util.htsget;
public class HtsgetMalformedResponseException extends RuntimeException {
public HtsgetMalformedResponseException() {}
public HtsgetMalformedResponseException(final String s) {
super(s);
}
public HtsgetMalformedResponseException(final String s, final Throwable throwable) {
super(s, throwable);
}
public HtsgetMalformedResponseException(final Throwable throwable) {
super(throwable);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy