Search Options

Results per page
Sort
Preferred Languages
Advance

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

  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) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Wed Nov 19 08:04:23 UTC 2025
    - 2.7K 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) {
                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);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 29.7K bytes
    - Viewed (3)
Back to top