We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20b74a3 commit b1a1a7eCopy full SHA for b1a1a7e
algoliasearch/src/main/java/com/algolia/exceptions/AlgoliaRetryException.java
@@ -12,7 +12,12 @@ public class AlgoliaRetryException extends AlgoliaRuntimeException {
12
private final List<Throwable> errors;
13
14
public AlgoliaRetryException(List<Throwable> errors) {
15
- super("Error(s) while processing the retry strategy", errors.get(errors.size() - 1));
+ super(
16
+ "Error(s) while processing the retry strategy. If the error persists, please visit our help" +
17
+ " center https://alg.li/support-unreachable-hosts or reach out to the Algolia Support" +
18
+ " team: https://alg.li/support",
19
+ errors.get(errors.size() - 1)
20
+ );
21
this.errors = errors;
22
}
23
0 commit comments