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

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);
}