Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 38 for occurred (0.05 seconds)

  1. 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)
  2. 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)
  3. src/main/java/org/codelibs/fess/llm/LlmStreamCallback.java

         * @param done true if this is the final chunk
         */
        void onChunk(String chunk, boolean done);
    
        /**
         * Called when an error occurs during streaming.
         *
         * @param error the error that occurred
         */
        default void onError(final Throwable error) {
            // Default implementation does nothing
        }
    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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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());
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 7.7K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/exception/FessSystemExceptionTest.java

            }
        }
    
        @Test
        public void test_throwAndCatchWithCause() {
            // Test throwing and catching the exception with cause
            String expectedMessage = "System error occurred";
            Exception expectedCause = new IllegalStateException("Invalid state");
    
            try {
                throw new FessSystemException(expectedMessage, expectedCause);
            } catch (FessSystemException e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 7.6K bytes
    - Click Count (0)
Back to Top