Make extend Spring Security's exception, for consistency with all other Spring Security exceptions.
This commit is contained in:
parent
9b4bb0ffd8
commit
4e55bd0117
|
@ -1,11 +1,14 @@
|
|||
package org.springframework.security.config;
|
||||
|
||||
import org.springframework.security.SpringSecurityException;
|
||||
|
||||
|
||||
/**
|
||||
* @author Luke Taylor
|
||||
* @author Ben Alex
|
||||
* @version $Id$
|
||||
*/
|
||||
public class SecurityConfigurationException extends RuntimeException {
|
||||
public class SecurityConfigurationException extends SpringSecurityException {
|
||||
public SecurityConfigurationException(String s) {
|
||||
super(s);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue