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…
Reference in New Issue