OPEN - issue SEC-1136: Removed SpringSecurityException. Introduced new AclException as base class for Acl module. Refactored JAAS authentication to map to AuthenticationExcpetions rather than SpringSecurityException. Modified ExceptionTranslationFilter to look explicitly for AuthenticationException or AccessDeniedException (which it should do since these are the only two it handles).
This commit is contained in:
+2
-3
@@ -1,14 +1,13 @@
|
||||
package org.springframework.security.config;
|
||||
|
||||
import org.springframework.security.core.SpringSecurityException;
|
||||
|
||||
import org.springframework.core.NestedRuntimeException;
|
||||
|
||||
/**
|
||||
* @author Luke Taylor
|
||||
* @author Ben Alex
|
||||
* @version $Id$
|
||||
*/
|
||||
public class SecurityConfigurationException extends SpringSecurityException {
|
||||
public class SecurityConfigurationException extends NestedRuntimeException {
|
||||
public SecurityConfigurationException(String s) {
|
||||
super(s);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user