/external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/ |
D | HttpResponseException.java | 13 public class HttpResponseException extends IOException { class 18 public HttpResponseException(int statusCode) { in HttpResponseException() method in HttpResponseException 23 public HttpResponseException(String detailMessage, int statusCode) { in HttpResponseException() method in HttpResponseException 28 public HttpResponseException(String detailMessage, int statusCode, List responseHeaders) { in HttpResponseException() method in HttpResponseException 34 public HttpResponseException(String message, Throwable cause, int statusCode) { in HttpResponseException() method in HttpResponseException 39 public HttpResponseException(Throwable cause, int statusCode) { in HttpResponseException() method in HttpResponseException
|
D | HttpTransportSE.java | 112 throws HttpResponseException, IOException, XmlPullParserException { in call() 118 throws HttpResponseException, IOException, XmlPullParserException { in call() 145 throws HttpResponseException, IOException, XmlPullParserException { in call() 237 throw new HttpResponseException("HTTP request failed, HTTP status: " + status, in call() 259 if (e instanceof HttpResponseException) { in call()
|
/external/sdk-platform-java/gax-java/gax-httpjson/src/test/java/com/google/api/gax/httpjson/ |
D | RetryingTest.java | 35 import com.google.api.client.http.HttpResponseException; 77 private HttpResponseException HTTP_SERVICE_UNAVAILABLE_EXCEPTION = 78 new HttpResponseException.Builder( 131 HttpResponseException httpResponseException = in retryTotalTimeoutExceeded() 132 new HttpResponseException.Builder( in retryTotalTimeoutExceeded() 193 HttpResponseException throwable = in retryOnStatusUnknown() 194 new HttpResponseException.Builder( in retryOnStatusUnknown() 228 HttpResponseException httpResponseException = in retryNoRecover() 229 new HttpResponseException.Builder( in retryNoRecover() 252 HttpResponseException throwable = in retryKeepFailing() [all …]
|
D | HttpJsonDirectCallableTest.java | 34 import com.google.api.client.http.HttpResponseException; 251 HttpResponseException respExp = (HttpResponseException) e.getCause(); in testErrorUnaryResponse() 308 HttpResponseException respExp = (HttpResponseException) e.getCause(); in testErrorNullContentFailedResponse() 338 HttpResponseException respExp = (HttpResponseException) e.getCause(); in testErrorNon2xxOr4xxResponse()
|
/external/sdk-platform-java/gax-java/gax-httpjson/src/main/java/com/google/api/gax/httpjson/ |
D | HttpJsonApiExceptionFactory.java | 32 import com.google.api.client.http.HttpResponseException; 49 if (throwable instanceof HttpResponseException) { in create() 50 HttpResponseException e = (HttpResponseException) throwable; in create()
|
D | HttpRequestRunnable.java | 40 import com.google.api.client.http.HttpResponseException; 127 } catch (HttpResponseException e) { in run()
|
/external/apache-http/src/org/apache/http/impl/client/ |
D | BasicResponseHandler.java | 40 import org.apache.http.client.HttpResponseException; 73 throws HttpResponseException, IOException { in handleResponse() 76 throw new HttpResponseException(statusLine.getStatusCode(), in handleResponse()
|
/external/google-auth-library-java/oauth2_http/java/com/google/auth/oauth2/ |
D | GoogleAuthException.java | 34 import com.google.api.client.http.HttpResponseException; 120 HttpResponseException responseException, String message) { in createWithTokenEndpointResponseException() 142 HttpResponseException responseException) { in createWithTokenEndpointResponseException()
|
D | OAuthException.java | 36 import com.google.api.client.http.HttpResponseException; 85 static OAuthException createFromHttpResponseException(HttpResponseException e) in createFromHttpResponseException()
|
D | StsRequestHandler.java | 39 import com.google.api.client.http.HttpResponseException; 110 } catch (HttpResponseException e) { in exchangeToken()
|
D | ExternalAccountAuthorizedUserCredentials.java | 41 import com.google.api.client.http.HttpResponseException; 176 } catch (HttpResponseException e) { in refreshAccessToken()
|
D | UserCredentials.java | 41 import com.google.api.client.http.HttpResponseException; 272 } catch (HttpResponseException re) { in doRefreshAccessToken()
|
D | GdchCredentials.java | 38 import com.google.api.client.http.HttpResponseException; 217 } catch (HttpResponseException re) { in refreshAccessToken()
|
D | ComputeEngineCredentials.java | 40 import com.google.api.client.http.HttpResponseException; 358 new HttpResponseException(response)); in getMetadataResponse()
|
D | ServiceAccountCredentials.java | 42 import com.google.api.client.http.HttpResponseException; 536 } catch (HttpResponseException re) { in refreshAccessToken()
|
/external/apache-http/src/org/apache/http/client/ |
D | HttpResponseException.java | 41 public class HttpResponseException extends ClientProtocolException { class 47 public HttpResponseException(int statusCode, final String s) { in HttpResponseException() method in HttpResponseException
|
/external/sdk-platform-java/java-core/google-cloud-core-grpc/src/main/java/com/google/cloud/grpc/ |
D | BaseGrpcServiceException.java | 19 import com.google.api.client.http.HttpResponseException; 52 if (exception instanceof HttpResponseException) { in makeExceptionData() 55 code = ((HttpResponseException) exception).getStatusCode(); in makeExceptionData()
|
/external/sdk-platform-java/java-core/google-cloud-core-http/src/main/java/com/google/cloud/http/ |
D | BaseHttpServiceException.java | 21 import com.google.api.client.http.HttpResponseException; 47 if (exception instanceof HttpResponseException) { in makeExceptionData() 69 code = ((HttpResponseException) exception).getStatusCode(); in makeExceptionData()
|
/external/google-auth-library-java/oauth2_http/javatests/com/google/auth/ |
D | TestUtils.java | 39 import com.google.api.client.http.HttpResponseException; 122 public static HttpResponseException buildHttpResponseException( in buildHttpResponseException() 134 return new HttpResponseException.Builder( in buildHttpResponseException()
|
/external/google-auth-library-java/oauth2_http/javatests/com/google/auth/oauth2/ |
D | ITDownscopingTest.java | 42 import com.google.api.client.http.HttpResponseException; 128 } catch (HttpResponseException e) { in downscoping_serviceAccountSourceWithRefresh()
|
D | ServiceAccountCredentialsTest.java | 44 import com.google.api.client.http.HttpResponseException; 784 assertTrue(ex.getCause() instanceof HttpResponseException); in refreshAccessToken_maxRetries_maxDelay()
|
/external/ksoap2/ |
D | 0001-ksoap2-update.patch | 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) { [all …]
|
/external/apache-http/api/ |
D | current.txt | 1352 …@Deprecated public class HttpResponseException extends org.apache.http.client.ClientProtocolExcept… 1353 ctor @Deprecated public HttpResponseException(int, String); 2519 …ponse(org.apache.http.HttpResponse) throws org.apache.http.client.HttpResponseException, java.io.I…
|