Skip to content

Commit

Permalink
issue #1056: fixes DataProcessException constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
mrk-vi committed Aug 9, 2024
1 parent d4ebc06 commit c179591
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ public DataProcessException(String message, Throwable cause) {
super(message, cause);
}

public DataProcessException(Throwable cause) {}
public DataProcessException(Throwable cause) {
super(cause);
}

public DataProcessException(
String message,
Expand Down

0 comments on commit c179591

Please sign in to comment.