Home
last modified time | relevance | path

Searched refs:AuthenticationException (Results 1 – 15 of 15) sorted by relevance

/external/apache-http/src/org/apache/http/auth/
DAuthenticationException.java47 public class AuthenticationException extends ProtocolException { class
54 public AuthenticationException() { in AuthenticationException() method in AuthenticationException
63 public AuthenticationException(String message) { in AuthenticationException() method in AuthenticationException
74 public AuthenticationException(String message, Throwable cause) { in AuthenticationException() method in AuthenticationException
DInvalidCredentialsException.java46 public class InvalidCredentialsException extends AuthenticationException {
DAuthScheme.java143 throws AuthenticationException; in authenticate()
/external/apache-http/src/org/apache/http/impl/auth/
DNTLMEngineException.java33 import org.apache.http.auth.AuthenticationException;
47 public class NTLMEngineException extends AuthenticationException {
DDigestScheme.java40 import org.apache.http.auth.AuthenticationException;
226 final HttpRequest request) throws AuthenticationException { in authenticate()
265 private String createDigest(final Credentials credentials) throws AuthenticationException { in createDigest()
292 throw new AuthenticationException( in createDigest()
328 throw new AuthenticationException("Unhandled algorithm " + algorithm + " requested"); in createDigest()
388 final String digest) throws AuthenticationException { in createDigestHeader()
DNTLMScheme.java36 import org.apache.http.auth.AuthenticationException;
114 final HttpRequest request) throws AuthenticationException { in authenticate()
138 throw new AuthenticationException("Unexpected state: " + this.state); in authenticate()
DBasicScheme.java36 import org.apache.http.auth.AuthenticationException;
137 final HttpRequest request) throws AuthenticationException { in authenticate()
/external/apache-http/src/org/apache/http/client/
DAuthenticationHandler.java39 import org.apache.http.auth.AuthenticationException;
64 HttpContext context) throws AuthenticationException; in selectScheme()
/external/apache-http/src/org/apache/http/impl/client/
DAbstractAuthenticationHandler.java47 import org.apache.http.auth.AuthenticationException;
117 final HttpContext context) throws AuthenticationException { in selectScheme()
163 throw new AuthenticationException( in selectScheme()
DDefaultRequestDirector.java58 import org.apache.http.auth.AuthenticationException;
742 } catch (AuthenticationException ex) { in createTunnelToTarget()
771 } catch (AuthenticationException ex) { in createTunnelToTarget()
982 } catch (AuthenticationException ex) { in handleResponse()
1010 } catch (AuthenticationException ex) { in handleResponse()
1067 throws MalformedChallengeException, AuthenticationException { in processChallenges()
1079 throw new AuthenticationException(id + in processChallenges()
/external/apache-http/src/org/apache/http/client/protocol/
DRequestProxyAuthentication.java44 import org.apache.http.auth.AuthenticationException;
101 } catch (AuthenticationException ex) { in process()
DRequestTargetAuthentication.java44 import org.apache.http.auth.AuthenticationException;
102 } catch (AuthenticationException ex) { in process()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/
DDefaultRequestDirector.java785 } catch (AuthenticationException ex) { in createTunnelToTarget()
1010 } catch (AuthenticationException ex) { in handleResponse()
1040 } catch (AuthenticationException ex) { in handleResponse()
1097 throws MalformedChallengeException, AuthenticationException { in processChallenges()
1109 throw new AuthenticationException(id + in processChallenges()
/external/autotest/server/hosts/
Dparamiko_host.py131 raise paramiko.AuthenticationException()
153 except paramiko.AuthenticationException:
/external/chromium-trace/catapult/third_party/gsutil/gslib/
Dcloud_api.py598 class AuthenticationException(ServiceException): class