Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for addErrorsDocidNotFound (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

            } catch (final Exception e) {
                logger.warn("Failed to request: {}", form.docId, e);
            }
            if (doc == null) {
                saveError(messages -> messages.addErrorsDocidNotFound(GLOBAL, form.docId));
                return redirect(ErrorAction.class);
            }
            final String url = DocumentUtil.getValue(doc, fessConfig.getIndexFieldUrl(), String.class);
            if (url == null) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 11 09:47:03 GMT 2025
    - 9K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

         * </pre>
         * @param property The property name for the message. (NotNull)
         * @param arg0 The parameter arg0 for message. (NotNull)
         * @return this. (NotNull)
         */
        public FessMessages addErrorsDocidNotFound(String property, String arg0) {
            assertPropertyNotNull(property);
            add(property, new UserMessage(ERRORS_docid_not_found, 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)
Back to Top