Skip to content

Commit 84ee651

Browse files
author
Timothy O'Brien
committed
Adds some clarification to the class level Javadoc, and
also rewords the constructor's javadoc to sound less 'robotic' git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/codec/trunk@130198 13f79535-47bb-0310-9956-ffa450edef68
1 parent 29076a4 commit 84ee651

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

src/java/org/apache/commons/codec/EncoderException.java

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,19 +54,21 @@
5454
package org.apache.commons.codec;
5555

5656
/**
57-
* Thrown when there is a failure condition during the encoding process.
57+
* Thrown when there is a failure condition during the encoding process. This
58+
* exception is thrown when an Encoder encounters a encoding specific exception
59+
* such as invalid data, inability to calculate a checksum, characters outside of the
60+
* expected range.
5861
*
5962
* @author Tim O'Brien
6063
* @author Gary Gregory
61-
* @version $Id: EncoderException.java,v 1.4 2003/08/14 07:40:17 ggregory Exp $
64+
* @version $Id: EncoderException.java,v 1.5 2003/10/04 16:24:56 tobrien Exp $
6265
*/
6366
public class EncoderException extends Exception {
6467

6568
/**
66-
* Creates a new instance of this exception with
67-
* an informative message.
69+
* Creates a new instance of this exception with an useful message.
6870
*
69-
* @param pMessage a human intelligible message
71+
* @param pMessage a useful message relating to the encoder specific error.
7072
*/
7173
public EncoderException(String pMessage) {
7274
super(pMessage);

0 commit comments

Comments
 (0)