Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for test_nestedCause (0.05 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

            } catch (final RuntimeException e) {
                caught = true;
                assertEquals("Test exception", e.getMessage());
            }
            assertTrue(caught);
        }
    
        @Test
        public void test_nestedCause() {
            final IllegalArgumentException rootCause = new IllegalArgumentException("Invalid argument");
            final RuntimeException middleCause = new RuntimeException("Middle error", rootCause);
    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