- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for ContentNotFoundException (0.16 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
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 documentCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ContentNotFoundExceptionTest.java
} @Test 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);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.9K bytes - Click Count (0)