Merge pull request #383 from matzew/master

removing java7 ctor usage of runtimeexception
This commit is contained in:
Stian Thorgersen 2014-05-14 16:48:15 +01:00
commit b27776b3c6
2 changed files with 0 additions and 8 deletions

View file

@ -20,8 +20,4 @@ public class ModelDuplicateException extends ModelException {
super(cause);
}
public ModelDuplicateException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}

View file

@ -20,8 +20,4 @@ public class ModelException extends RuntimeException {
super(cause);
}
public ModelException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}