
org.broadinstitute.http.nio.IncompatibleResponseToRangeQueryException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-nio Show documentation
Show all versions of http-nio Show documentation
HTTP/S FileSystem provider for Java NIO.2
The newest version!
package org.broadinstitute.http.nio;
/**
* indicates that a partial file was returned when the whole file was expecteted or vice a versa
*/
public class IncompatibleResponseToRangeQueryException extends UnexpectedHttpResponseException {
/**
* @param code the http response code recieved
* @param msg human readable error message
*/
public IncompatibleResponseToRangeQueryException(int code, String msg) {
super(code, msg);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy