Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@www.apache.org Received: (qmail 13784 invoked from network); 4 Oct 2003 16:25:00 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 4 Oct 2003 16:25:00 -0000 Received: (qmail 4512 invoked by uid 500); 4 Oct 2003 16:24:50 -0000 Delivered-To: apmail-jakarta-commons-dev-archive@jakarta.apache.org Received: (qmail 4446 invoked by uid 500); 4 Oct 2003 16:24:49 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 4433 invoked by uid 500); 4 Oct 2003 16:24:49 -0000 Received: (qmail 4430 invoked from network); 4 Oct 2003 16:24:49 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 4 Oct 2003 16:24:49 -0000 Received: (qmail 13742 invoked by uid 1628); 4 Oct 2003 16:24:56 -0000 Date: 4 Oct 2003 16:24:56 -0000 Message-ID: <20031004162456.13741.qmail@minotaur.apache.org> From: tobrien@apache.org To: jakarta-commons-cvs@apache.org Subject: cvs commit: jakarta-commons/codec/src/java/org/apache/commons/codec EncoderException.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N tobrien 2003/10/04 09:24:56 Modified: codec/src/java/org/apache/commons/codec EncoderException.java Log: Adds some clarification to the class level Javadoc, and also rewords the constructor's javadoc to sound less 'robotic' Revision Changes Path 1.5 +7 -5 jakarta-commons/codec/src/java/org/apache/commons/codec/EncoderException.java Index: EncoderException.java =================================================================== RCS file: /home/cvs/jakarta-commons/codec/src/java/org/apache/commons/codec/EncoderException.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- EncoderException.java 14 Aug 2003 07:40:17 -0000 1.4 +++ EncoderException.java 4 Oct 2003 16:24:56 -0000 1.5 @@ -54,7 +54,10 @@ package org.apache.commons.codec; /** - * Thrown when there is a failure condition during the encoding process. + * Thrown when there is a failure condition during the encoding process. This + * exception is thrown when an Encoder encounters a encoding specific exception + * such as invalid data, inability to calculate a checksum, characters outside of the + * expected range. * * @author Tim O'Brien * @author Gary Gregory @@ -63,10 +66,9 @@ public class EncoderException extends Exception { /** - * Creates a new instance of this exception with - * an informative message. + * Creates a new instance of this exception with an useful message. * - * @param pMessage a human intelligible message + * @param pMessage a useful message relating to the encoder specific error. */ public EncoderException(String pMessage) { super(pMessage); --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org