Skip to content

Commit

Permalink
[sinttest] Add TestNotPossibleException(String, Throwable) constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
Flowdalic committed Jul 14, 2024
1 parent b3ef3c3 commit 050acc4
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,8 @@ public TestNotPossibleException(String reason) {
public TestNotPossibleException(Throwable reason) {
super(reason);
}

public TestNotPossibleException(String message, Throwable reason) {
super(message, reason);
}
}

0 comments on commit 050acc4

Please sign in to comment.