Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getErrorCode (0.04 seconds)

  1. src/main/java/org/codelibs/fess/llm/LlmException.java

            super(message, cause);
            this.errorCode = errorCode;
        }
    
        /**
         * Gets the error code.
         *
         * @return the error code
         */
        public String getErrorCode() {
            return errorCode;
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 01:53:06 GMT 2026
    - 3.5K bytes
    - Click Count (0)
  2. 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)
Back to Top