001/*
002 * ====================================================================
003 * Licensed to the Apache Software Foundation (ASF) under one
004 * or more contributor license agreements.  See the NOTICE file
005 * distributed with this work for additional information
006 * regarding copyright ownership.  The ASF licenses this file
007 * to you under the Apache License, Version 2.0 (the
008 * "License"); you may not use this file except in compliance
009 * with the License.  You may obtain a copy of the License at
010 *
011 *   http://www.apache.org/licenses/LICENSE-2.0
012 *
013 * Unless required by applicable law or agreed to in writing,
014 * software distributed under the License is distributed on an
015 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
016 * KIND, either express or implied.  See the License for the
017 * specific language governing permissions and limitations
018 * under the License.
019 * ====================================================================
020 *
021 * This software consists of voluntary contributions made by many
022 * individuals on behalf of the Apache Software Foundation.  For more
023 * information on the Apache Software Foundation, please see
024 * <http://www.apache.org/>.
025 *
026 */
027
028package org.apache.http.cookie;
029
030import org.apache.http.ProtocolException;
031
032/**
033 * Signals that a cookie is in some way invalid or illegal in a given
034 * context
035 *
036 *
037 * @since 4.0
038 */
039public class MalformedCookieException extends ProtocolException {
040
041    private static final long serialVersionUID = -6695462944287282185L;
042
043    /**
044     * Creates a new MalformedCookieException with a {@code null} detail message.
045     */
046    public MalformedCookieException() {
047        super();
048    }
049
050    /**
051     * Creates a new MalformedCookieException with a specified message string.
052     *
053     * @param message The exception detail message
054     */
055    public MalformedCookieException(final String message) {
056        super(message);
057    }
058
059    /**
060     * Creates a new MalformedCookieException with the specified detail message and cause.
061     *
062     * @param message the exception detail message
063     * @param cause the {@code Throwable} that caused this exception, or {@code null}
064     * if the cause is unavailable, unknown, or not a {@code Throwable}
065     */
066    public MalformedCookieException(final String message, final Throwable cause) {
067        super(message, cause);
068    }
069}