RobustIdentifiable implemented and tested + test impacts.
[xmlrouter] / config / src / main / java / org / wamblee / xmlrouter / config / ConfigException.java
similarity index 82%
rename from config/src/main/java/org/wamblee/xmlrouter/config/DuplicateException.java
rename to config/src/main/java/org/wamblee/xmlrouter/config/ConfigException.java
index 635f6c6c67d88e5d39d12ccbe6d94c2356a8edca..5944bfec57ee122be5a67611920044f02bedf566 100644 (file)
@@ -20,13 +20,13 @@ package org.wamblee.xmlrouter.config;
  * 
  * @author Erik Brakkee
  */
-public class DuplicateException extends RuntimeException {
+public class ConfigException extends RuntimeException {
 
-    public DuplicateException(String aMsg) {
+    public ConfigException(String aMsg) {
         super(aMsg);
     }
 
-    public DuplicateException(String aMsg, Throwable aCause) {
+    public ConfigException(String aMsg, Throwable aCause) {
         super(aMsg, aCause);
     }
 }