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
1 changed files with 16 additions and 0 deletions

View File

@ -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);
}
}