Skip to content

Commit

Permalink
Fix for Java 1.6 build. Removed additional parameters in Exception co…
Browse files Browse the repository at this point in the history
…nstructor
  • Loading branch information
predic8 committed Mar 30, 2015
1 parent 425258c commit e597a5d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ public ModelAccessException() {

public ModelAccessException(String message, Throwable cause,
boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
// super(message, cause, enableSuppression, writableStackTrace);
super(message, cause);
}

public ModelAccessException(String message, Throwable cause) {
Expand Down

0 comments on commit e597a5d

Please sign in to comment.