You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/05/30 11:00:28 UTC

svn commit: r1129075 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/DigesterLoadingException.java

Author: simonetripodi
Date: Mon May 30 09:00:28 2011
New Revision: 1129075

URL: http://svn.apache.org/viewvc?rev=1129075&view=rev
Log:
added missing a Javadoc comments

Modified:
    commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/DigesterLoadingException.java

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/DigesterLoadingException.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/DigesterLoadingException.java?rev=1129075&r1=1129074&r2=1129075&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/DigesterLoadingException.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/DigesterLoadingException.java Mon May 30 09:00:28 2011
@@ -33,16 +33,32 @@ public final class DigesterLoadingExcept
      */
     private static final long serialVersionUID = 1L;
 
+    /**
+     * Constructs a new exception with the specified detail message and cause.
+     *
+     * @param message the detail message.
+     * @param cause the cause.
+     */
     public DigesterLoadingException( String message, Throwable cause )
     {
         super( message, cause );
     }
 
+    /**
+     * Constructs a new Digester exception with the specified detail message.
+     *
+     * @param message the detail message.
+     */
     public DigesterLoadingException( String message )
     {
         super( message );
     }
 
+    /**
+     * Constructs a new exception with the specified cause.
+     *
+     * @param cause the cause.
+     */
     public DigesterLoadingException( Throwable cause )
     {
         super( cause );