mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-07-09 20:03:30 +00:00
Exception for flagging errors in namespace config.
This commit is contained in:
parent
2d3d5ceb8d
commit
b9cfae5903
@ -0,0 +1,16 @@
|
||||
package org.springframework.security.config;
|
||||
|
||||
|
||||
/**
|
||||
* @author Luke Taylor
|
||||
* @version $Id$
|
||||
*/
|
||||
public class SecurityConfigurationException extends RuntimeException {
|
||||
public SecurityConfigurationException(String s) {
|
||||
super(s);
|
||||
}
|
||||
|
||||
public SecurityConfigurationException(String s, Throwable throwable) {
|
||||
super(s, throwable);
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user