FileDocCategorySizeDatePackage
MalformedCookieException.javaAPI DocAndroid 1.5 API2662Wed May 06 22:41:10 BST 2009org.apache.http.cookie

MalformedCookieException

public class MalformedCookieException extends ProtocolException
Signals that a cookie is in some way invalid or illegal in a given context
author
Oleg Kalnichevski
since
4.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public MalformedCookieException()
Creates a new MalformedCookieException with a null detail message.


                  
      
        super();
    
public MalformedCookieException(String message)
Creates a new MalformedCookieException with a specified message string.

param
message The exception detail message

        super(message);
    
public MalformedCookieException(String message, Throwable cause)
Creates a new MalformedCookieException with the specified detail message and cause.

param
message the exception detail message
param
cause the Throwable that caused this exception, or null if the cause is unavailable, unknown, or not a Throwable

        super(message, cause);
    
Methods Summary