1
0
mirror of synced 2026-08-02 08:17:03 +00:00

Exception for flagging errors in namespace config.

This commit is contained in:
Luke Taylor
2007-10-20 23:18:41 +00:00
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);
}
}