Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for DataStoreCrawlingException (0.3 seconds)

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

        /**
         * Creates a new DataStoreCrawlingException with the specified URL, message, and cause.
         * The abort flag is set to false by default.
         *
         * @param url the URL where the crawling error occurred
         * @param message the error message
         * @param cause the underlying exception that caused this error
         */
        public DataStoreCrawlingException(final String url, final String message, final Throwable cause) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Nov 19 08:04:23 GMT 2025
    - 2.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/exception/DataStoreCrawlingExceptionTest.java

            DataStoreCrawlingException exception1 = new DataStoreCrawlingException(url, message, ioException);
            assertTrue(exception1.getCause() instanceof java.io.IOException);
    
            // Test with IllegalArgumentException
            IllegalArgumentException argException = new IllegalArgumentException("Invalid URL format");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 16.6K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

                return null;
            } catch (final ChildUrlsException | DataStoreCrawlingException e) {
                throw e;
            } catch (final Exception e) {
                final FessConfig fessConfig = ComponentUtil.getFessConfig();
                final Object configId = dataMap.get(fessConfig.getIndexFieldConfigId());
                throw new DataStoreCrawlingException(url, "Failed to add document. url: " + url + ", configId: " + configId, e);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 29.7K bytes
    - Click Count (3)
Back to Top