Searched refs:AuthFailureError (Results 1 - 10 of 10) sorted by relevance

/frameworks/volley/src/main/java/com/android/volley/
H A DAuthFailureError.java25 public class AuthFailureError extends VolleyError { class in inherits:VolleyError
29 public AuthFailureError() { } method in class:AuthFailureError
31 public AuthFailureError(Intent intent) { method in class:AuthFailureError
35 public AuthFailureError(NetworkResponse response) { method in class:AuthFailureError
39 public AuthFailureError(String message) { method in class:AuthFailureError
43 public AuthFailureError(String message, Exception reason) { method in class:AuthFailureError
H A DRequest.java318 * throw {@link AuthFailureError} as authentication may be required to
320 * @throws AuthFailureError In the event of auth failure
322 public Map<String, String> getHeaders() throws AuthFailureError {
328 * a simple GET should be used. Can throw {@link AuthFailureError} as
333 * @throws AuthFailureError In the event of auth failure
338 protected Map<String, String> getPostParams() throws AuthFailureError {
372 * @throws AuthFailureError In the event of auth failure
377 public byte[] getPostBody() throws AuthFailureError {
391 * {@link AuthFailureError} as authentication may be required to provide these values.
395 * @throws AuthFailureError i
[all...]
/frameworks/volley/src/main/java/com/android/volley/toolbox/
H A DAuthenticator.java19 import com.android.volley.AuthFailureError;
28 * @throws AuthFailureError If authentication did not succeed
30 public String getAuthToken() throws AuthFailureError;
H A DHttpStack.java19 import com.android.volley.AuthFailureError;
43 throws IOException, AuthFailureError;
H A DAndroidAuthenticator.java19 import com.android.volley.AuthFailureError;
86 public String getAuthToken() throws AuthFailureError {
93 throw new AuthFailureError("Error while retrieving auth token", e);
99 throw new AuthFailureError(intent);
104 throw new AuthFailureError("Got null auth token for type: " + mAuthTokenType);
H A DHttpClientStack.java19 import com.android.volley.AuthFailureError;
76 throws IOException, AuthFailureError {
95 Map<String, String> additionalHeaders) throws AuthFailureError {
147 Request<?> request) throws AuthFailureError {
H A DHurlStack.java19 import com.android.volley.AuthFailureError;
90 throws IOException, AuthFailureError {
204 Request<?> request) throws IOException, AuthFailureError {
259 throws IOException, AuthFailureError {
H A DBasicNetwork.java21 import com.android.volley.AuthFailureError;
160 request, new AuthFailureError(networkResponse));
/frameworks/volley/src/test/java/com/android/volley/mock/
H A DMockHttpStack.java19 import com.android.volley.AuthFailureError;
56 throws AuthFailureError {
67 } catch (AuthFailureError e) {
/frameworks/volley/src/test/java/com/android/volley/toolbox/
H A DAndroidAuthenticatorTest.java26 import com.android.volley.AuthFailureError;
53 @Test(expected = AuthFailureError.class)
60 @Test(expected = AuthFailureError.class)
72 @Test(expected = AuthFailureError.class)

Completed in 2812 milliseconds