- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for addErrorsNotFoundOnFileSystem (1.38 sec)
-
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);
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 9K bytes - Viewed (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; } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 119.6K bytes - Viewed (0)