You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2005/10/25 04:10:15 UTC

svn commit: r328234 - /directory/shared/ldap/trunk/common/src/java/org/apache/ldap/common/exception/LdapAuthenticationException.java

Author: akarasulu
Date: Mon Oct 24 19:10:13 2005
New Revision: 328234

URL: http://svn.apache.org/viewcvs?rev=328234&view=rev
Log:
should be able to add an informative message to the exception

Modified:
    directory/shared/ldap/trunk/common/src/java/org/apache/ldap/common/exception/LdapAuthenticationException.java

Modified: directory/shared/ldap/trunk/common/src/java/org/apache/ldap/common/exception/LdapAuthenticationException.java
URL: http://svn.apache.org/viewcvs/directory/shared/ldap/trunk/common/src/java/org/apache/ldap/common/exception/LdapAuthenticationException.java?rev=328234&r1=328233&r2=328234&view=diff
==============================================================================
--- directory/shared/ldap/trunk/common/src/java/org/apache/ldap/common/exception/LdapAuthenticationException.java (original)
+++ directory/shared/ldap/trunk/common/src/java/org/apache/ldap/common/exception/LdapAuthenticationException.java Mon Oct 24 19:10:13 2005
@@ -36,6 +36,26 @@
 {
     static final long serialVersionUID = 4035795887975350185L;
 
+
+    /**
+     * Creates a LdapAuthenticationException.
+     */
+    public LdapAuthenticationException()
+    {
+    }
+
+
+    /**
+     * Creates a LdapAuthenticationException with a message.
+     *
+     * @param msg the message associated with the exception
+     */
+    public LdapAuthenticationException( String msg )
+    {
+        super( msg );
+    }
+
+
     /**
      * Gets ResultCodeEnum.INVALIDCREDENTIALS every time.
      *