Remove J7 only constructor in EnhancedRuntimeException, J6 compiling compatibility restored.
This commit is contained in:
parent
38cdbc16e2
commit
f6c50cc3af
1 changed files with 0 additions and 3 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue