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

1 2 3

  /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 $
49 public class MalformedCookieException extends ProtocolException {
54 * Creates a new MalformedCookieException with a <tt>null</tt> detail message.
56 public MalformedCookieException() {
61 * Creates a new MalformedCookieException with a specified message string.
65 public MalformedCookieException(String message) {
70 * Creates a new MalformedCookieException with the specified detail message and cause.
76 public MalformedCookieException(String message, Throwable cause) {
CookieAttributeHandler.java 61 throws MalformedCookieException;
68 * @throws MalformedCookieException if cookie validation fails for this attribute
71 throws MalformedCookieException;
CookieSpec.java 79 * @throws MalformedCookieException if an exception occurs during parsing
81 List<Cookie> parse(Header header, CookieOrigin origin) throws MalformedCookieException;
89 * @throws MalformedCookieException if the cookie is invalid
91 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;
51 throws MalformedCookieException {
56 throw new MalformedCookieException("Missing value for max-age attribute");
62 throw new MalformedCookieException ("Invalid max-age attribute: "
66 throw new MalformedCookieException ("Negative max-age attribute: "
RFC2109VersionHandler.java 35 import org.apache.http.cookie.MalformedCookieException;
51 throws MalformedCookieException {
56 throw new MalformedCookieException("Missing value for version attribute");
59 throw new MalformedCookieException("Blank value for version attribute");
64 throw new MalformedCookieException("Invalid version: "
71 throws MalformedCookieException {
76 throw new MalformedCookieException("Cookie version may not be negative");
BasicExpiresHandler.java 33 import org.apache.http.cookie.MalformedCookieException;
56 throws MalformedCookieException {
61 throw new MalformedCookieException("Missing value for expires attribute");
66 throw new MalformedCookieException("Unable to parse expires attribute: "
RFC2109DomainHandler.java 38 import org.apache.http.cookie.MalformedCookieException;
54 throws MalformedCookieException {
59 throw new MalformedCookieException("Missing value for domain attribute");
62 throw new MalformedCookieException("Blank value for domain attribute");
68 throws MalformedCookieException {
78 throw new MalformedCookieException("Cookie domain may not be null");
83 throw new MalformedCookieException("Domain attribute \""
90 throw new MalformedCookieException("Domain attribute \""
97 throw new MalformedCookieException("Domain attribute \""
103 throw new MalformedCookieException(
    [all...]
BasicCommentHandler.java 33 import org.apache.http.cookie.MalformedCookieException;
49 throws MalformedCookieException {
RFC2965DomainAttributeHandler.java 40 import org.apache.http.cookie.MalformedCookieException;
65 throws MalformedCookieException {
70 throw new MalformedCookieException(
74 throw new MalformedCookieException(
115 throws MalformedCookieException {
124 throw new MalformedCookieException("Invalid cookie state: " +
133 throw new MalformedCookieException("Domain attribute \"" +
142 throw new MalformedCookieException(
150 throw new MalformedCookieException(
160 throw new MalformedCookieException("Domain attribute \"
    [all...]
AbstractCookieAttributeHandler.java 36 import org.apache.http.cookie.MalformedCookieException;
47 throws MalformedCookieException {
BasicDomainHandler.java 36 import org.apache.http.cookie.MalformedCookieException;
52 throws MalformedCookieException {
57 throw new MalformedCookieException("Missing value for domain attribute");
60 throw new MalformedCookieException("Blank value for domain attribute");
66 throws MalformedCookieException {
81 throw new MalformedCookieException("Cookie domain may not be null");
93 throw new MalformedCookieException(
100 throw new MalformedCookieException(
RFC2965VersionAttributeHandler.java 38 import org.apache.http.cookie.MalformedCookieException;
60 throws MalformedCookieException {
65 throw new MalformedCookieException(
75 throw new MalformedCookieException("Invalid cookie version.");
84 throws MalformedCookieException {
91 throw new MalformedCookieException(
RFC2965CommentUrlAttributeHandler.java 37 import org.apache.http.cookie.MalformedCookieException;
56 throws MalformedCookieException {
64 throws MalformedCookieException {
RFC2965DiscardAttributeHandler.java 37 import org.apache.http.cookie.MalformedCookieException;
56 throws MalformedCookieException {
64 throws MalformedCookieException {
BasicSecureHandler.java 35 import org.apache.http.cookie.MalformedCookieException;
51 throws MalformedCookieException {
BasicPathHandler.java 36 import org.apache.http.cookie.MalformedCookieException;
52 throws MalformedCookieException {
63 throws MalformedCookieException {
65 throw new MalformedCookieException(
NetscapeDomainHandler.java 38 import org.apache.http.cookie.MalformedCookieException;
54 throws MalformedCookieException {
64 throw new MalformedCookieException("Domain attribute \""
71 throw new MalformedCookieException("Domain attribute \""
RFC2965PortAttributeHandler.java 40 import org.apache.http.cookie.MalformedCookieException;
64 * @throws MalformedCookieException if there is a problem in
68 throws MalformedCookieException {
76 throw new MalformedCookieException ("Invalid Port attribute.");
81 throw new MalformedCookieException ("Invalid Port "
111 throws MalformedCookieException {
129 throws MalformedCookieException {
140 throw new MalformedCookieException(
CookieSpecBase.java 43 import org.apache.http.cookie.MalformedCookieException;
77 throws MalformedCookieException {
83 throw new MalformedCookieException("Cookie name may not be empty");
109 throws MalformedCookieException {
BestMatchSpec.java 41 import org.apache.http.cookie.MalformedCookieException;
102 final CookieOrigin origin) throws MalformedCookieException {
138 final CookieOrigin origin) throws MalformedCookieException {
RFC2109Spec.java 44 import org.apache.http.cookie.MalformedCookieException;
109 throws MalformedCookieException {
122 throws MalformedCookieException {
128 throw new MalformedCookieException("Cookie name may not contain blanks");
131 throw new MalformedCookieException("Cookie name may not start with $");
BrowserCompatSpec.java 44 import org.apache.http.cookie.MalformedCookieException;
109 throws MalformedCookieException {
145 throw new MalformedCookieException("Header value is null");
NetscapeDraftSpec.java 43 import org.apache.http.cookie.MalformedCookieException;
122 * @throws MalformedCookieException if an exception occurs during parsing
125 throws MalformedCookieException {
143 throw new MalformedCookieException("Header value is null");
RFC2965Spec.java 46 import org.apache.http.cookie.MalformedCookieException;
103 CookieOrigin origin) throws MalformedCookieException {
120 throw new MalformedCookieException("Cookie name may not be empty");
159 throws MalformedCookieException {
  /external/apache-http/src/org/apache/http/client/protocol/
ResponseProcessCookies.java 48 import org.apache.http.cookie.MalformedCookieException;
137 } catch (MalformedCookieException ex) {
146 } catch (MalformedCookieException ex) {

Completed in 180 milliseconds

1 2 3