You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ka...@apache.org on 2009/06/09 05:31:38 UTC

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

Author: kayyagari
Date: Tue Jun  9 03:31:37 2009
New Revision: 782873

URL: http://svn.apache.org/viewvc?rev=782873&view=rev
Log:
added few more convenent constructors

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

Modified: directory/shared/trunk/client-api/src/main/java/org/apache/directory/shared/ldap/client/api/exception/LdapException.java
URL: http://svn.apache.org/viewvc/directory/shared/trunk/client-api/src/main/java/org/apache/directory/shared/ldap/client/api/exception/LdapException.java?rev=782873&r1=782872&r2=782873&view=diff
==============================================================================
--- directory/shared/trunk/client-api/src/main/java/org/apache/directory/shared/ldap/client/api/exception/LdapException.java (original)
+++ directory/shared/trunk/client-api/src/main/java/org/apache/directory/shared/ldap/client/api/exception/LdapException.java Tue Jun  9 03:31:37 2009
@@ -36,8 +36,20 @@
     }
 
 
-    public LdapException(String explanation)
+    public LdapException( String explanation )
     {
         super( explanation );
     }
+
+
+    public LdapException( Throwable cause )
+    {
+        super( cause );
+    }
+
+
+    public LdapException( String explanation, Throwable cause )
+    {
+        super( explanation, cause );
+    }
 }