MNT-24346: Fix "0" return status code in Search API when Solr is unavailable. (#2939)

* MNT-24346: Fix 0 status code in Search API when Solr is unavailable.

* MNT-24346: Fixing PMD issues.

* MNT-24346: Fixing formatting.

* MNT-24346: Reverting accidental method name change.
This commit is contained in:
Maciej Pichura
2024-09-25 12:47:06 +02:00
committed by GitHub
parent 0b511e0b55
commit 837fb0cccd
3 changed files with 30 additions and 3 deletions

View File

@@ -27,4 +27,9 @@ public class HttpClientException extends AlfrescoRuntimeException
{
super(msgId);
}
public HttpClientException(String msgId, Throwable cause)
{
super(msgId, cause);
}
}