- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for DataStoreCrawlingException (0.12 sec)
-
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) -
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) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 28.9K bytes - Viewed (0)