Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for test_constructor_withNullMessageAndCause (0.13 sec)

  1. src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.java

            assertNotNull(exception);
            assertNull(exception.getCause());
            assertNull(exception.getMessage());
        }
    
        public void test_constructor_withNullMessageAndCause() {
            // Test with both null message and cause
            DataStoreException exception = new DataStoreException(null, null);
    
            assertNotNull(exception);
            assertNull(exception.getMessage());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.7K bytes
    - Viewed (0)
Back to top