Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ContentNotFoundException (0.07 sec)

  1. src/test/java/org/codelibs/fess/exception/ContentNotFoundExceptionTest.java

        }
    
        public void test_instanceOfFessSystemException() {
            // Verify that ContentNotFoundException is an instance of FessSystemException
            String parentUrl = "http://example.com/parent";
            String url = "http://example.com/child";
            ContentNotFoundException exception = new ContentNotFoundException(parentUrl, url);
    
            assertTrue(exception instanceof FessSystemException);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

                final FailureUrlService failureUrlService = ComponentUtil.getComponent(FailureUrlService.class);
                failureUrlService.store(crawlingConfig, ContentNotFoundException.class.getCanonicalName(), url,
                        new ContentNotFoundException(urlQueue.getParentUrl(), url));
            }
        }
    
        /**
         * Stores a child URL in the crawling queue with duplicate host handling.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.1K bytes
    - Viewed (0)
Back to top