- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for SearchEngineClientException (0.09 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientExceptionTest.java
assertNotNull(exception); assertNull(exception.getMessage()); assertNull(exception.getCause()); } @Test public void test_constructor_withEmptyMessage() { // Test constructor with empty message String message = ""; SearchEngineClientException exception = new SearchEngineClientException(message);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
if (response.hasFailures()) { throw new SearchEngineClientException(response.buildFailureMessage()); } return true; } catch (final InterruptedException e) { throw new InterruptedRuntimeException(e); } catch (final ExecutionException e) { throw new SearchEngineClientException("Failed to update bulk data.", e); } } /**
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 05:56:45 GMT 2025 - 36.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
* * @return the engine information * @throws SearchEngineClientException if the client is not an HttpClient */ public EngineInfo getEngineInfo() { if (client instanceof final HttpClient httpClient) { return httpClient.getEngineInfo(); } throw new SearchEngineClientException("client is not HttpClient."); } // // Fesen ClientCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 138.6K bytes - Click Count (1)