Return-Path: Delivered-To: apmail-jakarta-httpclient-commits-archive@www.apache.org Received: (qmail 57038 invoked from network); 25 May 2006 17:33:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 25 May 2006 17:33:58 -0000 Received: (qmail 59804 invoked by uid 500); 25 May 2006 17:33:58 -0000 Mailing-List: contact httpclient-commits-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: httpclient-dev@jakarta.apache.org Delivered-To: mailing list httpclient-commits@jakarta.apache.org Received: (qmail 59793 invoked by uid 99); 25 May 2006 17:33:58 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 May 2006 10:33:58 -0700 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 May 2006 10:33:57 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 065851A983A; Thu, 25 May 2006 10:33:37 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r409419 - /jakarta/httpcomponents/httpcore/trunk/src/java/org/apache/http/UnsupportedHttpVersionException.java Date: Thu, 25 May 2006 17:33:36 -0000 To: httpclient-commits@jakarta.apache.org From: rolandw@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060525173337.065851A983A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: rolandw Date: Thu May 25 10:33:36 2006 New Revision: 409419 URL: http://svn.apache.org/viewvc?rev=409419&view=rev Log: fixed JavaDoc warning Modified: jakarta/httpcomponents/httpcore/trunk/src/java/org/apache/http/UnsupportedHttpVersionException.java Modified: jakarta/httpcomponents/httpcore/trunk/src/java/org/apache/http/UnsupportedHttpVersionException.java URL: http://svn.apache.org/viewvc/jakarta/httpcomponents/httpcore/trunk/src/java/org/apache/http/UnsupportedHttpVersionException.java?rev=409419&r1=409418&r2=409419&view=diff ============================================================================== --- jakarta/httpcomponents/httpcore/trunk/src/java/org/apache/http/UnsupportedHttpVersionException.java (original) +++ jakarta/httpcomponents/httpcore/trunk/src/java/org/apache/http/UnsupportedHttpVersionException.java Thu May 25 10:33:36 2006 @@ -32,8 +32,8 @@ import org.apache.http.ProtocolException; /** - *

- *

+ * Indicates an unsupported version of the HTTP protocol. + * * @author Oleg Kalnichevski * * @version $Revision:379772 $ @@ -43,14 +43,14 @@ static final long serialVersionUID = 6838964812421632743L; /** - * Creates a NotImplementedException with a null detail message. + * Creates an exception without a detail message. */ public UnsupportedHttpVersionException() { super(); } /** - * Creates a NotImplementedException with the specified detail message. + * Creates an exception with the specified detail message. * * @param message The exception detail message */