Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
@Setter
public class EngineRuntimeException extends RuntimeException {

private Exception originalException;

public EngineRuntimeException() {
super();
}
Expand All @@ -34,8 +32,7 @@ public EngineRuntimeException(String errorMessage) {
}

public EngineRuntimeException(String errorMessage, Exception originalException) {
super(errorMessage);
this.originalException = originalException;
super(errorMessage, originalException);
}

}
Loading