- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 39 for occurred (0.06 seconds)
-
src/main/java/org/codelibs/fess/exception/DataStoreCrawlingException.java
* This exception provides information about the URL where the error occurred * and whether the crawling process should be aborted. */ public class DataStoreCrawlingException extends CrawlingAccessException { private static final long serialVersionUID = 1L; /** * The URL where the crawling error occurred. */ private final String url; /**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) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java
* This is a required field used for identifying which crawler process failed. */ @Required public String threadName; /** * The name or type of the error that occurred. * This field provides a categorization of the failure type. */ public String errorName; /** * The detailed error log or stack trace for the failure.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 4.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmStreamCallback.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jan 12 10:32:40 GMT 2026 - 1.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/LlmExceptionTest.java
@Test public void test_constructorWithMessageAndCause() { final RuntimeException cause = new RuntimeException("Root cause"); final LlmException exception = new LlmException("Error occurred", cause); assertEquals("Error occurred", exception.getMessage()); assertSame(cause, exception.getCause()); } @Test public void test_extendsFromFessSystemException() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 05 04:19:06 GMT 2026 - 5.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/DictionaryExceptionTest.java
public class DictionaryExceptionTest extends UnitFessTestCase { @Test public void test_constructor_withMessage() { // Test constructor with message only String message = "Dictionary error occurred"; DictionaryException exception = new DictionaryException(message); assertNotNull(exception); assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 6.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java
thread.start(); } // Wait for all threads to complete for (Thread thread : threads) { thread.join(); } // Verify no exceptions occurred for (int i = 0; i < threadCount; i++) { assertNull(exceptions[i], "Thread " + i + " threw exception"); } // Verify all URLs were added synchronized (mockCallback) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 19.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
* or milestone in the crawling process. */ public enum StatsAction { /** Indicates that a URL was successfully accessed. */ ACCESSED, /** Indicates that an exception occurred during URL access. */ ACCESS_EXCEPTION, /** Indicates that a child URL was discovered. */ CHILD_URL, /** Indicates that multiple child URLs were discovered. */ CHILD_URLS,Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 17.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/JobProcessingExceptionTest.java
assertEquals(cause, exception.getCause()); } @Test public void test_constructor_withMessage() { // Test constructor with message only final String message = "Job processing error occurred"; final JobProcessingException exception = new JobProcessingException(message); assertNotNull(exception); assertEquals(message, exception.getMessage()); assertNull(exception.getCause());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ScriptEngineExceptionTest.java
public class ScriptEngineExceptionTest extends UnitFessTestCase { @Test public void test_constructor_withMessage() { // Test constructor with message only String message = "Script engine error occurred"; ScriptEngineException exception = new ScriptEngineException(message); assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/LdapOperationExceptionTest.java
assertNull(exception.getCause()); } @Test public void test_constructor_withMessageAndNullCause() { // Test constructor with message and null cause String message = "LDAP error occurred"; LdapOperationException exception = new LdapOperationException(message, null); assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 8.3K bytes - Click Count (0)