Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/main/java/org/codelibs/fess/exception/ContentNotFoundException.java

     * Typically used when a document or resource is not available during crawling or indexing.
     */
    public class ContentNotFoundException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Constructs a new ContentNotFoundException with the specified parent URL and URL.
         *
         * @param parentUrl the URL of the parent document
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  2. 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)
Back to top