Removing exception ctor that does not work w/ java 6

This commit is contained in:
Matthias Wessendorf 2014-05-14 17:40:27 +02:00
parent b95fd0d0b0
commit 9e0bf9e7dc

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