OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AuthenticationException
(Results
1 - 15
of
15
) sorted by null
/external/apache-http/src/org/apache/http/auth/
AuthenticationException.java
2
* $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/auth/
AuthenticationException
.java $
47
public class
AuthenticationException
extends ProtocolException {
52
* Creates a new
AuthenticationException
with a <tt>null</tt> detail message.
54
public
AuthenticationException
() {
59
* Creates a new
AuthenticationException
with the specified message.
63
public
AuthenticationException
(String message) {
68
* Creates a new
AuthenticationException
with the specified detail message and cause.
74
public
AuthenticationException
(String message, Throwable cause) {
InvalidCredentialsException.java
46
public class InvalidCredentialsException extends
AuthenticationException
{
AuthScheme.java
137
* @throws
AuthenticationException
if authorization string cannot
143
throws
AuthenticationException
;
/external/apache-http/src/org/apache/http/impl/auth/
NTLMEngineException.java
33
import org.apache.http.auth.
AuthenticationException
;
47
public class NTLMEngineException extends
AuthenticationException
{
NTLMScheme.java
36
import org.apache.http.auth.
AuthenticationException
;
114
final HttpRequest request) throws
AuthenticationException
{
138
throw new
AuthenticationException
("Unexpected state: " + this.state);
BasicScheme.java
36
import org.apache.http.auth.
AuthenticationException
;
130
* @throws
AuthenticationException
if authorization string cannot
137
final HttpRequest request) throws
AuthenticationException
{
DigestScheme.java
40
import org.apache.http.auth.
AuthenticationException
;
219
* @throws
AuthenticationException
if authorization string cannot
226
final HttpRequest request) throws
AuthenticationException
{
263
* @throws
AuthenticationException
when MD5 is an unsupported algorithm
265
private String createDigest(final Credentials credentials) throws
AuthenticationException
{
292
throw new
AuthenticationException
(
328
throw new
AuthenticationException
("Unhandled algorithm " + algorithm + " requested");
388
final String digest) throws
AuthenticationException
{
/external/apache-http/src/org/apache/http/client/
AuthenticationHandler.java
39
import org.apache.http.auth.
AuthenticationException
;
64
HttpContext context) throws
AuthenticationException
;
/external/apache-http/src/org/apache/http/client/protocol/
RequestProxyAuthentication.java
44
import org.apache.http.auth.
AuthenticationException
;
101
} catch (
AuthenticationException
ex) {
RequestTargetAuthentication.java
44
import org.apache.http.auth.
AuthenticationException
;
102
} catch (
AuthenticationException
ex) {
/external/apache-http/src/org/apache/http/impl/client/
AbstractAuthenticationHandler.java
47
import org.apache.http.auth.
AuthenticationException
;
117
final HttpContext context) throws
AuthenticationException
{
163
throw new
AuthenticationException
(
DefaultRequestDirector.java
58
import org.apache.http.auth.
AuthenticationException
;
742
} catch (
AuthenticationException
ex) {
771
} catch (
AuthenticationException
ex) {
[
all
...]
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/syncadapter/
SyncAdapter.java
24
import org.apache.http.auth.
AuthenticationException
;
138
} catch (final
AuthenticationException
e) {
139
Log.e(TAG, "
AuthenticationException
", e);
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
NetworkUtilities.java
24
import org.apache.http.auth.
AuthenticationException
;
162
throws JSONException, ParseException, IOException,
AuthenticationException
{
210
throw new
AuthenticationException
();
/external/robolectric-shadows/shadows/httpclient/src/main/java/org/robolectric/shadows/httpclient/
DefaultRequestDirector.java
54
import org.apache.http.auth.
AuthenticationException
;
803
} catch (
AuthenticationException
ex) {
[
all
...]
Completed in 330 milliseconds