Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DataStoreCrawlingException (0.91 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 e the underlying exception that caused this error
         */
        public DataStoreCrawlingException(final String url, final String message, final Exception e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  2. 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)
Back to top