File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
features/dd-sdk-android-flags/src/main/kotlin/com/datadog/android/flags/internal/net Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change 1+ /*
2+ * Unless explicitly stated otherwise all files in this repository are licensed under the Apache License Version 2.0.
3+ * This product includes software developed at Datadog (https://www.datadoghq.com/).
4+ * Copyright 2016-Present Datadog, Inc.
5+ */
6+
7+ package com.datadog.android.flags.internal.net
8+
9+ /* *
10+ * Exception thrown when a network request for flag evaluations fails.
11+ *
12+ * This exception is used internally to communicate network failures when updating evaluation
13+ * contexts. It provides a clear signal that the failure was due to network connectivity issues
14+ * rather than application logic errors.
15+ *
16+ * @param message A descriptive message about the network failure
17+ */
18+ internal class NetworkRequestFailedException (message : String ) : RuntimeException(message)
You can’t perform that action at this time.
0 commit comments