Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for test_getErrorCodeWithServiceUnavailable (0.12 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/llm/LlmExceptionTest.java

            assertEquals("service_unavailable", LlmException.ERROR_SERVICE_UNAVAILABLE);
            assertEquals("unknown", LlmException.ERROR_UNKNOWN);
        }
    
        @Test
        public void test_getErrorCodeWithServiceUnavailable() {
            final LlmException exception = new LlmException("Service unavailable", LlmException.ERROR_SERVICE_UNAVAILABLE);
            assertEquals(LlmException.ERROR_SERVICE_UNAVAILABLE, exception.getErrorCode());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 05 04:19:06 GMT 2026
    - 5.7K bytes
    - Click Count (0)
Back to Top