io.femo.http.UnknownStatusCodeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-jdk7 Show documentation
Show all versions of http-jdk7 Show documentation
An easy to use HTTP API, that supports synchronous and asynchronous execution of HTTP request.
On android only asynchronous driver is supported.
This library has been backported to jdk 7 to retain compatibility with android!
The newest version!
package io.femo.http;
/**
* Created by felix on 9/10/15.
*/
public class UnknownStatusCodeException extends RuntimeException {
public UnknownStatusCodeException(int status) {
super("Unknown status " + status);
}
}