Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getErrorCode (0.06 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(LlmException.ERROR_UNKNOWN, exception.getErrorCode());
        }
    
        @Test
        public void test_constructorWithMessageAndCauseDefaultsToUnknownErrorCode() {
            final RuntimeException cause = new RuntimeException("Root cause");
            final LlmException exception = new LlmException("Error occurred", cause);
            assertEquals(LlmException.ERROR_UNKNOWN, exception.getErrorCode());
        }
    
        @Test
    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)
  2. src/main/java/org/codelibs/fess/chat/ChatClient.java

                logger.warn("[RAG] LLM error during enhanced chat. sessionId={}, errorCode={}, error={}, elapsedTime={}ms",
                        session.getSessionId(), e.getErrorCode(), e.getMessage(), System.currentTimeMillis() - startTime, e);
                callback.onError("llm", e.getErrorCode());
                throw e;
            } catch (final Exception e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 56.6K bytes
    - Click Count (0)
Back to Top