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 2010/03/16 18:30:42 UTC

svn commit: r923887 - /directory/shared/trunk/ldap-ldif/src/main/java/org/apache/directory/shared/ldap/ldif/LdapLdifException.java

Author: kayyagari
Date: Tue Mar 16 17:30:42 2010
New Revision: 923887

URL: http://svn.apache.org/viewvc?rev=923887&view=rev
Log:
extending the LdapException

Modified:
    directory/shared/trunk/ldap-ldif/src/main/java/org/apache/directory/shared/ldap/ldif/LdapLdifException.java

Modified: directory/shared/trunk/ldap-ldif/src/main/java/org/apache/directory/shared/ldap/ldif/LdapLdifException.java
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap-ldif/src/main/java/org/apache/directory/shared/ldap/ldif/LdapLdifException.java?rev=923887&r1=923886&r2=923887&view=diff
==============================================================================
--- directory/shared/trunk/ldap-ldif/src/main/java/org/apache/directory/shared/ldap/ldif/LdapLdifException.java (original)
+++ directory/shared/trunk/ldap-ldif/src/main/java/org/apache/directory/shared/ldap/ldif/LdapLdifException.java Tue Mar 16 17:30:42 2010
@@ -19,6 +19,8 @@
  */
 package org.apache.directory.shared.ldap.ldif;
 
+import org.apache.directory.shared.ldap.exception.LdapException;
+
 
 /**
  * An exception throws when we get an error while parsing a LDIF file.
@@ -26,7 +28,7 @@ package org.apache.directory.shared.ldap
  * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
  * @version $Rev: 923395 $
  */
-public class LdapLdifException extends Exception
+public class LdapLdifException extends LdapException
 {
     /** The serial version UUID */
     private static final long serialVersionUID = 1L;