Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DataStoreException (0.06 sec)

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

            // Test with different types of causes
            DataStoreException withIOException = new DataStoreException("IO Error", new java.io.IOException("File not found"));
            DataStoreException withNPE = new DataStoreException("NPE Error", new NullPointerException("Null value"));
            DataStoreException withCustom = new DataStoreException("Custom Error", new FessSystemException("System error"));
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java

            dataMap.put("title", "Test Document");
    
            // Execute and verify exception
            try {
                indexUpdateCallback.store(paramMap, dataMap);
                fail("Should throw DataStoreException");
            } catch (DataStoreException e) {
                assertTrue(e.getMessage().contains("url is null"));
            }
        }
    
        public void test_store_withLabels() {
            // Setup label matching
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
Back to top