Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for DataStoreException (0.19 seconds)

  1. src/main/java/org/codelibs/fess/exception/DataStoreException.java

        /**
         * Creates a new DataStoreException with the specified message.
         *
         * @param message the error message
         */
        public DataStoreException(final String message) {
            super(message);
        }
    
        /**
         * Creates a new DataStoreException with the specified cause.
         *
         * @param cause the underlying cause of this exception
         */
        public DataStoreException(final Throwable cause) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.7K bytes
    - Click Count (0)
  2. 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"));
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 8.9K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.stream.StreamUtil;
    import org.codelibs.fess.entity.DataStoreParams;
    import org.codelibs.fess.exception.DataStoreException;
    import org.codelibs.fess.helper.CrawlingInfoHelper;
    import org.codelibs.fess.helper.IndexingHelper;
    import org.codelibs.fess.helper.SearchLogHelper;
    import org.codelibs.fess.helper.SystemHelper;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 10.5K bytes
    - Click Count (0)
  4. 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"));
            }
        }
    
        @Test
        public void test_store_withLabels() {
            // Setup label matching
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 24.7K bytes
    - Click Count (0)
Back to Top