HomeSort by relevance Sort by last modified time
    Searched refs:MalformedCookieException (Results 1 - 25 of 28) sorted by null

1 2

  /external/apache-http/src/org/apache/http/cookie/
MalformedCookieException.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/MalformedCookieException.java $
44 public class MalformedCookieException extends ProtocolException {
49 * Creates a new MalformedCookieException with a <tt>null</tt> detail message.
51 public MalformedCookieException() {
56 * Creates a new MalformedCookieException with a specified message string.
60 public MalformedCookieException(String message) {
65 * Creates a new MalformedCookieException with the specified detail message and cause.
71 public MalformedCookieException(String message, Throwable cause) {
CookieAttributeHandler.java 56 throws MalformedCookieException;
63 * @throws MalformedCookieException if cookie validation fails for this attribute
66 throws MalformedCookieException;
CookieSpec.java 74 * @throws MalformedCookieException if an exception occurs during parsing
76 List<Cookie> parse(Header header, CookieOrigin origin) throws MalformedCookieException;
84 * @throws MalformedCookieException if the cookie is invalid
86 void validate(Cookie cookie, CookieOrigin origin) throws MalformedCookieException;
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicMaxAgeHandler.java 35 import org.apache.http.cookie.MalformedCookieException;
45 throws MalformedCookieException {
50 throw new MalformedCookieException("Missing value for max-age attribute");
56 throw new MalformedCookieException ("Invalid max-age attribute: "
60 throw new MalformedCookieException ("Negative max-age attribute: "
RFC2109VersionHandler.java 35 import org.apache.http.cookie.MalformedCookieException;
45 throws MalformedCookieException {
50 throw new MalformedCookieException("Missing value for version attribute");
53 throw new MalformedCookieException("Blank value for version attribute");
58 throw new MalformedCookieException("Invalid version: "
65 throws MalformedCookieException {
70 throw new MalformedCookieException("Cookie version may not be negative");
BasicExpiresHandler.java 33 import org.apache.http.cookie.MalformedCookieException;
50 throws MalformedCookieException {
55 throw new MalformedCookieException("Missing value for expires attribute");
60 throw new MalformedCookieException("Unable to parse expires attribute: "
RFC2109DomainHandler.java 38 import org.apache.http.cookie.MalformedCookieException;
48 throws MalformedCookieException {
53 throw new MalformedCookieException("Missing value for domain attribute");
56 throw new MalformedCookieException("Blank value for domain attribute");
62 throws MalformedCookieException {
72 throw new MalformedCookieException("Cookie domain may not be null");
77 throw new MalformedCookieException("Domain attribute \""
84 throw new MalformedCookieException("Domain attribute \""
91 throw new MalformedCookieException("Domain attribute \""
97 throw new MalformedCookieException(
    [all...]
BasicCommentHandler.java 33 import org.apache.http.cookie.MalformedCookieException;
43 throws MalformedCookieException {
RFC2965DomainAttributeHandler.java 40 import org.apache.http.cookie.MalformedCookieException;
60 throws MalformedCookieException {
65 throw new MalformedCookieException(
69 throw new MalformedCookieException(
110 throws MalformedCookieException {
119 throw new MalformedCookieException("Invalid cookie state: " +
128 throw new MalformedCookieException("Domain attribute \"" +
137 throw new MalformedCookieException(
145 throw new MalformedCookieException(
155 throw new MalformedCookieException("Domain attribute \"
    [all...]
AbstractCookieAttributeHandler.java 36 import org.apache.http.cookie.MalformedCookieException;
41 throws MalformedCookieException {
BasicDomainHandler.java 36 import org.apache.http.cookie.MalformedCookieException;
46 throws MalformedCookieException {
51 throw new MalformedCookieException("Missing value for domain attribute");
54 throw new MalformedCookieException("Blank value for domain attribute");
60 throws MalformedCookieException {
75 throw new MalformedCookieException("Cookie domain may not be null");
87 throw new MalformedCookieException(
94 throw new MalformedCookieException(
RFC2965VersionAttributeHandler.java 38 import org.apache.http.cookie.MalformedCookieException;
55 throws MalformedCookieException {
60 throw new MalformedCookieException(
70 throw new MalformedCookieException("Invalid cookie version.");
79 throws MalformedCookieException {
86 throw new MalformedCookieException(
RFC2965CommentUrlAttributeHandler.java 37 import org.apache.http.cookie.MalformedCookieException;
51 throws MalformedCookieException {
59 throws MalformedCookieException {
RFC2965DiscardAttributeHandler.java 37 import org.apache.http.cookie.MalformedCookieException;
51 throws MalformedCookieException {
59 throws MalformedCookieException {
BasicSecureHandler.java 35 import org.apache.http.cookie.MalformedCookieException;
45 throws MalformedCookieException {
BasicPathHandler.java 36 import org.apache.http.cookie.MalformedCookieException;
46 throws MalformedCookieException {
57 throws MalformedCookieException {
59 throw new MalformedCookieException(
NetscapeDomainHandler.java 38 import org.apache.http.cookie.MalformedCookieException;
48 throws MalformedCookieException {
58 throw new MalformedCookieException("Domain attribute \""
65 throw new MalformedCookieException("Domain attribute \""
RFC2965PortAttributeHandler.java 40 import org.apache.http.cookie.MalformedCookieException;
59 * @throws MalformedCookieException if there is a problem in
63 throws MalformedCookieException {
71 throw new MalformedCookieException ("Invalid Port attribute.");
76 throw new MalformedCookieException ("Invalid Port "
106 throws MalformedCookieException {
124 throws MalformedCookieException {
135 throw new MalformedCookieException(
CookieSpecBase.java 43 import org.apache.http.cookie.MalformedCookieException;
72 throws MalformedCookieException {
78 throw new MalformedCookieException("Cookie name may not be empty");
104 throws MalformedCookieException {
BestMatchSpec.java 41 import org.apache.http.cookie.MalformedCookieException;
97 final CookieOrigin origin) throws MalformedCookieException {
133 final CookieOrigin origin) throws MalformedCookieException {
RFC2109Spec.java 44 import org.apache.http.cookie.MalformedCookieException;
104 throws MalformedCookieException {
117 throws MalformedCookieException {
123 throw new MalformedCookieException("Cookie name may not contain blanks");
126 throw new MalformedCookieException("Cookie name may not start with $");
BrowserCompatSpec.java 44 import org.apache.http.cookie.MalformedCookieException;
104 throws MalformedCookieException {
140 throw new MalformedCookieException("Header value is null");
NetscapeDraftSpec.java 43 import org.apache.http.cookie.MalformedCookieException;
117 * @throws MalformedCookieException if an exception occurs during parsing
120 throws MalformedCookieException {
138 throw new MalformedCookieException("Header value is null");
RFC2965Spec.java 46 import org.apache.http.cookie.MalformedCookieException;
98 CookieOrigin origin) throws MalformedCookieException {
115 throw new MalformedCookieException("Cookie name may not be empty");
154 throws MalformedCookieException {
  /external/apache-http/src/org/apache/http/client/protocol/
ResponseProcessCookies.java 48 import org.apache.http.cookie.MalformedCookieException;
130 } catch (MalformedCookieException ex) {
137 } catch (MalformedCookieException ex) {

Completed in 4526 milliseconds

1 2