소스 검색

Changed LdapDataAccessException to extend AuthenticationServiceException.

Luke Taylor 19 년 전
부모
커밋
dc728987f4
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      core/src/main/java/org/acegisecurity/providers/ldap/LdapDataAccessException.java

+ 2 - 2
core/src/main/java/org/acegisecurity/providers/ldap/LdapDataAccessException.java

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