You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2010/06/01 22:49:07 UTC

svn commit: r950245 - /directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/exception/LdapException.java

Author: elecharny
Date: Tue Jun  1 20:49:07 2010
New Revision: 950245

URL: http://svn.apache.org/viewvc?rev=950245&view=rev
Log:
Added Javadoc

Modified:
    directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/exception/LdapException.java

Modified: directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/exception/LdapException.java
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/exception/LdapException.java?rev=950245&r1=950244&r2=950245&view=diff
==============================================================================
--- directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/exception/LdapException.java (original)
+++ directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/exception/LdapException.java Tue Jun  1 20:49:07 2010
@@ -34,29 +34,40 @@ public class LdapException extends Excep
     
     /**
      * Creates a new instance of LdapException.
-     *
-     * @param message The exception message
      */
-    public LdapException( String message )
+    public LdapException()
     {
-        super( message );
     }
 
     
-    public LdapException()
+    /**
+     * Creates a new instance of LdapException.
+     *
+     * @param explanation The message associated with the exception
+     */
+    public LdapException( String explanation )
     {
+        super( explanation );
     }
 
     
+    /**
+     * Creates a new instance of LdapException.
+     */
     public LdapException( Throwable cause )
     {
         super( cause );
     }
 
 
+    /**
+     * Creates a new instance of LdapException.
+     *
+     * @param explanation The message associated with the exception
+     * @param cause The root cause for this exception
+     */
     public LdapException( String explanation, Throwable cause )
     {
         super( explanation, cause );
     }
-
 }