mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-29 15:22:15 +00:00
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;
|
package org.springframework.security.config;
|
||||||
|
|
||||||
|
import org.springframework.security.SpringSecurityException;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Luke Taylor
|
* @author Luke Taylor
|
||||||
|
* @author Ben Alex
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
public class SecurityConfigurationException extends RuntimeException {
|
public class SecurityConfigurationException extends SpringSecurityException {
|
||||||
public SecurityConfigurationException(String s) {
|
public SecurityConfigurationException(String s) {
|
||||||
super(s);
|
super(s);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user