Merge pull request #38550 from anavrotski

* gh-38550:
  Align Health.down with Health.Builder.down

Closes gh-38550
This commit is contained in:
Andy Wilkinson 2024-01-05 16:06:25 +00:00
commit 71a155677d
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ public final class Health extends HealthComponent {
* @param ex the exception
* @return a new {@link Builder} instance
*/
public static Builder down(Exception ex) {
public static Builder down(Throwable ex) {
return down().withException(ex);
}