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 2004/12/11 06:16:20 UTC

svn commit: r111576 - /incubator/directory/ldap/trunk/common/src/java/org/apache/ldap/common/exception/LdapNameNotFoundException.java

Author: akarasulu
Date: Fri Dec 10 21:16:18 2004
New Revision: 111576

URL: http://svn.apache.org/viewcvs?view=rev&rev=111576
Log:
Need to add some of the constructors for an explanation!

Modified:
   incubator/directory/ldap/trunk/common/src/java/org/apache/ldap/common/exception/LdapNameNotFoundException.java

Modified: incubator/directory/ldap/trunk/common/src/java/org/apache/ldap/common/exception/LdapNameNotFoundException.java
Url: http://svn.apache.org/viewcvs/incubator/directory/ldap/trunk/common/src/java/org/apache/ldap/common/exception/LdapNameNotFoundException.java?view=diff&rev=111576&p1=incubator/directory/ldap/trunk/common/src/java/org/apache/ldap/common/exception/LdapNameNotFoundException.java&r1=111575&p2=incubator/directory/ldap/trunk/common/src/java/org/apache/ldap/common/exception/LdapNameNotFoundException.java&r2=111576
==============================================================================
--- incubator/directory/ldap/trunk/common/src/java/org/apache/ldap/common/exception/LdapNameNotFoundException.java	(original)
+++ incubator/directory/ldap/trunk/common/src/java/org/apache/ldap/common/exception/LdapNameNotFoundException.java	Fri Dec 10 21:16:18 2004
@@ -34,6 +34,17 @@
  */
 public class LdapNameNotFoundException extends NameNotFoundException implements LdapException
 {
+    public LdapNameNotFoundException()
+    {
+    }
+
+
+    public LdapNameNotFoundException( String explanation )
+    {
+        super( explanation );
+    }
+
+
     /**
      * Gets the ResultCode associated with this exception which will always be
      * ResultCodeEnum.NOSUCHOBJECT.