OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ProtocolException
(Results
1 - 25
of
47
) sorted by null
1
2
/system/media/mca/filterfw/java/android/filterfw/core/
ProtocolException.java
23
public class
ProtocolException
extends RuntimeException {
25
public
ProtocolException
() {
29
public
ProtocolException
(String message) {
/external/apache-http/src/org/apache/http/
ProtocolException.java
2
* $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/
ProtocolException
.java $
42
public class
ProtocolException
extends HttpException {
47
* Creates a new
ProtocolException
with a <tt>null</tt> detail message.
49
public
ProtocolException
() {
54
* Creates a new
ProtocolException
with the specified detail message.
58
public
ProtocolException
(String message) {
63
* Creates a new
ProtocolException
with the specified detail message and cause.
69
public
ProtocolException
(String message, Throwable cause) {
UnsupportedHttpVersionException.java
34
import org.apache.http.
ProtocolException
;
43
public class UnsupportedHttpVersionException extends
ProtocolException
{
/libcore/luni/src/main/java/java/net/
ProtocolException.java
25
public class
ProtocolException
extends java.io.IOException {
32
public
ProtocolException
() {
38
public
ProtocolException
(String detailMessage) {
46
public
ProtocolException
(String detailMessage, Throwable cause) {
HttpURLConnection.java
646
* @throws
ProtocolException
652
public void setRequestMethod(String method) throws
ProtocolException
{
654
throw new
ProtocolException
("Connection already established");
664
// if none matches, then throw
ProtocolException
665
throw new
ProtocolException
("Unknown method '" + method + "'; must be one of " +
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
ProtocolExceptionTest.java
20
import java.net.
ProtocolException
;
25
* @tests java.net.
ProtocolException
#
ProtocolException
()
28
// Test for method java.net.
ProtocolException
()
30
throw new
ProtocolException
();
31
} catch (
ProtocolException
e) {
34
fail("Exception during
ProtocolException
test : " + e.getMessage());
40
* @tests java.net.
ProtocolException
#
ProtocolException
(java.lang.String)
43
// Test for method java.net.
ProtocolException
(java.lang.String
[
all
...]
/external/apache-http/src/org/apache/http/client/
NonRepeatableRequestException.java
33
import org.apache.http.
ProtocolException
;
43
public class NonRepeatableRequestException extends
ProtocolException
{
RedirectException.java
33
import org.apache.http.
ProtocolException
;
42
public class RedirectException extends
ProtocolException
{
RedirectHandler.java
37
import org.apache.http.
ProtocolException
;
77
throws
ProtocolException
;
/external/apache-http/src/org/apache/http/auth/
AuthenticationException.java
33
import org.apache.http.
ProtocolException
;
42
public class AuthenticationException extends
ProtocolException
{
MalformedChallengeException.java
33
import org.apache.http.
ProtocolException
;
43
public class MalformedChallengeException extends
ProtocolException
{
/external/apache-http/src/org/apache/http/cookie/
MalformedCookieException.java
34
import org.apache.http.
ProtocolException
;
44
public class MalformedCookieException extends
ProtocolException
{
/external/apache-http/src/org/apache/http/impl/entity/
StrictContentLengthStrategy.java
38
import org.apache.http.
ProtocolException
;
196
throw new
ProtocolException
(
204
throw new
ProtocolException
(
213
throw new
ProtocolException
("Invalid content length: " + s);
LaxContentLengthStrategy.java
39
import org.apache.http.
ProtocolException
;
204
throw new
ProtocolException
215
throw new
ProtocolException
("Unsupported transfer encoding: " + encoding);
228
throw new
ProtocolException
("Chunk-encoding must be the last one applied");
236
throw new
ProtocolException
("Multiple content length headers");
245
throw new
ProtocolException
("Invalid content length: " + header.getValue());
/external/apache-http/src/org/apache/http/protocol/
RequestContent.java
43
import org.apache.http.
ProtocolException
;
67
throw new
ProtocolException
("Transfer-encoding header already present");
70
throw new
ProtocolException
("Content-Length header already present");
81
throw new
ProtocolException
(
ResponseContent.java
43
import org.apache.http.
ProtocolException
;
67
throw new
ProtocolException
("Transfer-encoding header already present");
70
throw new
ProtocolException
("Content-Length header already present");
RequestTargetHost.java
45
import org.apache.http.
ProtocolException
;
90
throw new
ProtocolException
("Target host missing");
/external/apache-http/src/org/apache/http/impl/client/
EntityEnclosingRequestWrapper.java
37
import org.apache.http.
ProtocolException
;
60
throws
ProtocolException
{
DefaultRedirectHandler.java
44
import org.apache.http.
ProtocolException
;
95
final HttpContext context) throws
ProtocolException
{
103
throw new
ProtocolException
(
116
throw new
ProtocolException
("Invalid redirect URI: " + location, ex);
124
throw new
ProtocolException
("Relative redirect location '"
143
throw new
ProtocolException
(ex.getMessage(), ex);
166
throw new
ProtocolException
(ex.getMessage(), ex);
RequestWrapper.java
38
import org.apache.http.
ProtocolException
;
69
public RequestWrapper(final HttpRequest request) throws
ProtocolException
{
86
throw new
ProtocolException
("Invalid request URI: "
/external/apache-http/src/org/apache/http/impl/conn/
DefaultResponseParser.java
40
import org.apache.http.
ProtocolException
;
93
throw new
ProtocolException
("The server failed to respond with a " +
/frameworks/base/services/java/com/android/server/net/
NetworkIdentitySet.java
24
import java.net.
ProtocolException
;
66
throw new
ProtocolException
("unexpected version: " + version);
/external/apache-http/src/org/apache/http/impl/io/
AbstractMessageParser.java
41
import org.apache.http.
ProtocolException
;
162
throw new
ProtocolException
(ex.getMessage());
176
throw new
ProtocolException
(px.getMessage(), px);
/libcore/luni/src/main/java/libcore/net/http/
HttpURLConnectionImpl.java
30
import java.net.
ProtocolException
;
165
throw new
ProtocolException
("This protocol does not support input");
192
throw new
ProtocolException
("method does not support a request body: " + method);
194
throw new
ProtocolException
("cannot write request body after response has been read");
240
throw new
ProtocolException
(method + " does not support writing");
357
throw new
ProtocolException
("Too many redirects");
/external/apache-http/src/org/apache/http/client/protocol/
RequestAddCookies.java
47
import org.apache.http.
ProtocolException
;
129
throw new
ProtocolException
("Invalid request URI: " +
Completed in 1650 milliseconds
1
2