Skip to content

Commit

Permalink
Merge pull request #43995 from gsmet/avoid-double-wrapping-quarkusuni…
Browse files Browse the repository at this point in the history
…ttest

Avoid double wrapping of RuntimeExceptions in QuarkusUnitTest
  • Loading branch information
geoand authored Oct 21, 2024
2 parents de27583 + c276359 commit a0566a7
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -732,6 +732,8 @@ public boolean test(String className) {
throw e;
}
}
} catch (RuntimeException e) {
throw e;
} catch (Exception e) {
throw new RuntimeException(e);
}
Expand Down

0 comments on commit a0566a7

Please sign in to comment.