Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for QueryParseException (0.07 sec)

  1. src/main/java/org/codelibs/fess/exception/QueryParseException.java

     * within the Fess search framework.
     *
     */
    public class QueryParseException extends FessSystemException {
    
        /** Serial version UID for serialization compatibility */
        private static final long serialVersionUID = 1L;
    
        /**
         * Constructs a new QueryParseException with the specified ParseException as the cause.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exception/QueryParseExceptionTest.java

            QueryParseException queryParseException = new QueryParseException(parseException);
    
            // Verify inheritance chain
            assertTrue(queryParseException instanceof QueryParseException);
            assertTrue(queryParseException instanceof FessSystemException);
            assertTrue(queryParseException instanceof RuntimeException);
            assertTrue(queryParseException instanceof Exception);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 5.2K bytes
    - Viewed (0)
Back to top