From a773b77c5c8c94fc1408498f9f655ba8b5474381 Mon Sep 17 00:00:00 2001 From: Sebastian Ullrich Date: Tue, 7 May 2024 23:15:58 +0200 Subject: [PATCH] docs: add explanation for startupExceptionHandler (#241) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a69eddf61..c280868d6 100644 --- a/README.md +++ b/README.md @@ -467,6 +467,7 @@ The `UnleashConfig$Builder` class (created via `UnleashConfig.builder()`) expose | `unleashContextProvider` | An [Unleash context provider used to configure Unleash](#2-via-an-unleashcontextprovider). | No | `null` | | `unleashFeatureFetcherFactory` | A factory providing a FeatureFetcher implementation. | No | [`HttpFeatureFetcher::new`](src/main/java/io/getunleash/repository/HttpFeatureFetcher.java) | | `unleashMetricsSenderFactory` | A factory providing a MetricSender implementation. | No | [`DefaultHttpMetricsSender::new`](src/main/java/io/getunleash/metric/DefaultHttpMetricsSender.java) | +| `startupExceptionHandler` | Handler for the behavior in the event of an error when starting the client. | No | `null` | When you have set all the desired options, initialize the configuration with the `build` method. You can then pass the configuration to the Unleash client constructor.