Exception for flagging errors in namespace config.
This commit is contained in:
+16
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user