You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by tr...@apache.org on 2006/12/19 03:29:19 UTC

svn commit: r488506 - /directory/trunks/apacheds/mitosis/src/main/java/org/apache/directory/mitosis/common/InvalidCSNException.java

Author: trustin
Date: Mon Dec 18 18:29:19 2006
New Revision: 488506

URL: http://svn.apache.org/viewvc?view=rev&rev=488506
Log:
Updated JavaDoc for InvalidCSNException

Modified:
    directory/trunks/apacheds/mitosis/src/main/java/org/apache/directory/mitosis/common/InvalidCSNException.java

Modified: directory/trunks/apacheds/mitosis/src/main/java/org/apache/directory/mitosis/common/InvalidCSNException.java
URL: http://svn.apache.org/viewvc/directory/trunks/apacheds/mitosis/src/main/java/org/apache/directory/mitosis/common/InvalidCSNException.java?view=diff&rev=488506&r1=488505&r2=488506
==============================================================================
--- directory/trunks/apacheds/mitosis/src/main/java/org/apache/directory/mitosis/common/InvalidCSNException.java (original)
+++ directory/trunks/apacheds/mitosis/src/main/java/org/apache/directory/mitosis/common/InvalidCSNException.java Mon Dec 18 18:29:19 2006
@@ -21,8 +21,8 @@
 
 
 /**
- * 
- * InvalidCSNException is thrown when trying to create an invalid CSN.
+ * A {@link RuntimeException} which is thrown when a wrong string
+ * representation is specified to create a new {@link CSN}.
  *
  * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
  */
@@ -38,24 +38,34 @@
     private static final long serialVersionUID = 1L;
 
 
+    /**
+     * Creates a new instance.
+     */
     public InvalidCSNException()
     {
         super();
     }
 
-
+    /**
+     * Creates a new instance with the specified <tt>message</tt> and
+     * <tt>cause</tt>.
+     */
     public InvalidCSNException( String message, Throwable cause )
     {
         super( message, cause );
     }
 
-
+    /**
+     * Creates a new instance with the specified <tt>message</tt>.
+     */
     public InvalidCSNException( String message )
     {
         super( message );
     }
 
-
+    /**
+     * Creates a new instance with the specified <tt>cause</tt>.
+     */
     public InvalidCSNException( Throwable cause )
     {
         super( cause );