Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for addErrorsInvalidQueryParseError (0.13 sec)

  1. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                } catch (final SearchPhaseExecutionException e) {
                    throw new InvalidQueryException(messages -> messages.addErrorsInvalidQueryParseError(UserMessages.GLOBAL_PROPERTY_KEY),
                            "Invalid query: " + searchRequestBuilder, e);
                } catch (final OpenSearchException e) {
                    if (logger.isDebugEnabled()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

         * message: The given query is invalid.
         * </pre>
         * @param property The property name for the message. (NotNull)
         * @return this. (NotNull)
         */
        public FessMessages addErrorsInvalidQueryParseError(String property) {
            assertPropertyNotNull(property);
            add(property, new UserMessage(ERRORS_invalid_query_parse_error));
            return this;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 119.6K bytes
    - Viewed (0)
Back to top