1 changed files with 16 additions and 0 deletions
@ -0,0 +1,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); |
||||
} |
||||
} |
||||
Loading…
Reference in new issue