- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for addErrorsNotFoundOnFileSystem (0.9 seconds)
-
src/main/java/org/codelibs/fess/app/web/go/GoAction.java
if (response.getHttpStatus().orElse(200) == 404) { logger.debug("Document not found: url={}", targetUrl); saveError(messages -> messages.addErrorsNotFoundOnFileSystem(GLOBAL, targetUrl)); return redirect(ErrorAction.class); } return response; } catch (final Exception e) { logger.warn("Failed to load: {}", doc, e);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 11 09:47:03 GMT 2025 - 9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessMessagesTest.java
} @Test public void test_addErrorsNotFoundOnFileSystem() { String property = "testProperty"; String arg0 = "file.txt"; FessMessages result = messages.addErrorsNotFoundOnFileSystem(property, arg0); assertNotNull(result); assertSame(messages, result); assertTrue(messages.hasMessageOf(property)); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 28.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java
* @param property The property name for the message. (NotNull) * @param arg0 The parameter arg0 for message. (NotNull) * @return this. (NotNull) */ public FessMessages addErrorsNotFoundOnFileSystem(String property, String arg0) { assertPropertyNotNull(property); add(property, new UserMessage(ERRORS_not_found_on_file_system, arg0)); return this; } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 126.6K bytes - Click Count (0)