Remove J7 only constructor in EnhancedRuntimeException, J6 compiling compatibility restored.

This commit is contained in:
Lex Manos 2015-04-07 19:32:25 -07:00
parent 38cdbc16e2
commit f6c50cc3af
1 changed files with 0 additions and 3 deletions

View File

@ -24,9 +24,6 @@ public abstract class EnhancedRuntimeException extends RuntimeException
public EnhancedRuntimeException(String message) { super(message); }
public EnhancedRuntimeException(String message, Throwable cause) { super(message, cause); }
public EnhancedRuntimeException(Throwable cause) { super(cause); }
protected EnhancedRuntimeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
@Override
public String getMessage()