Lines Matching refs:HttpResponseException
27 .../transport/HttpResponseException.java | 60 +++
37 create mode 100644 ksoap2-j2se/src/main/java/org/ksoap2/transport/HttpResponseException.java
2121 …n/java/org/ksoap2/transport/HttpResponseException.java b/ksoap2-j2se/src/main/java/org/ksoap2/tran…
2125 +++ b/ksoap2-j2se/src/main/java/org/ksoap2/transport/HttpResponseException.java
2133 + * HttpResponseException is an IOException that is to be thrown when a Http response code is diffe…
2138 +public class HttpResponseException extends IOException {
2143 + public HttpResponseException(int statusCode) {
2148 + public HttpResponseException(String detailMessage, int statusCode) {
2153 + public HttpResponseException(String detailMessage, int statusCode,List responseHeaders) {
2159 + public HttpResponseException(String message, Throwable cause, int statusCode) {
2164 + public HttpResponseException(Throwable cause, int statusCode) {
2227 + * @throws HttpResponseException
2235 + throws HttpResponseException, IOException, XmlPullParserException {
2241 + throws HttpResponseException, IOException, XmlPullParserException {
2272 + * @throws HttpResponseException
2278 + throws HttpResponseException, IOException, XmlPullParserException {
2436 + throw new HttpResponseException("HTTP request failed, HTTP status: " + status, sta…
2469 + if ( e instanceof HttpResponseException) {