Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DataStoreCrawlingException (0.18 sec)

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

            String url = "http://example.com/test";
            String message = "Test error message";
            Exception cause = new RuntimeException("Root cause");
    
            DataStoreCrawlingException exception = new DataStoreCrawlingException(url, message, cause);
    
            assertEquals(url, exception.getUrl());
            assertEquals(message, exception.getMessage());
            assertEquals(cause, exception.getCause());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

                    }
                }
                return null;
            } catch (final ChildUrlsException | DataStoreCrawlingException e) {
                throw e;
            } catch (final Exception e) {
                throw new DataStoreCrawlingException(url, "Failed to add: " + dataMap, e);
            }
        }
    
        /**
         * Merges response data from the crawler into the original data map.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 28.9K bytes
    - Viewed (0)
Back to top