Now extends Spring's DataAccessException

This commit is contained in:
Luke Taylor 2006-05-20 00:14:24 +00:00
parent 3eea670efc
commit 3583470a49
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@
package org.acegisecurity.providers.ldap; package org.acegisecurity.providers.ldap;
import org.acegisecurity.AuthenticationServiceException; import org.springframework.dao.DataAccessException;
/** /**
* Used to wrap unexpected NamingExceptions while accessing the LDAP server * Used to wrap unexpected NamingExceptions while accessing the LDAP server
@ -24,7 +24,7 @@ import org.acegisecurity.AuthenticationServiceException;
* @author Luke Taylor * @author Luke Taylor
* @version $Id$ * @version $Id$
*/ */
public class LdapDataAccessException extends AuthenticationServiceException { public class LdapDataAccessException extends DataAccessException {
public LdapDataAccessException(String msg) { public LdapDataAccessException(String msg) {
super(msg); super(msg);