Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ParseException (0.1 sec)

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

        private static final long serialVersionUID = 1L;
    
        /**
         * Constructs a new QueryParseException with the specified ParseException as the cause.
         *
         * @param cause the ParseException that caused this exception
         */
        public QueryParseException(final ParseException cause) {
            super(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);
    
            assertEquals("org.apache.lucene.queryparser.classic.ParseException: " + errorMessage, queryParseException.getMessage());
        }
    
        public void test_getCause() {
            // Test that the cause is properly set and retrievable
            ParseException parseException = new ParseException("Query parsing failed");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/query/parser/QueryParser.java

             * @param quoted whether the query is quoted
             * @return the created Query object
             * @throws ParseException if the query cannot be parsed
             */
            @Override
            protected Query getFieldQuery(final String field, final String queryText, final boolean quoted) throws ParseException {
                final org.apache.lucene.search.Query query = super.getFieldQuery(field, queryText, quoted);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.helper;
    
    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    import java.util.Calendar;
    import java.util.Date;
    
    import org.codelibs.fess.exception.FessSystemException;
    import org.codelibs.fess.helper.IntervalControlHelper.IntervalRule;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/exception/ParseRuntimeException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.exception;
    
    import static org.codelibs.core.collection.ArrayUtil.asArray;
    
    import java.text.ParseException;
    
    /**
     * Exception thrown when parsing fails.
     *
     * @author higa
     */
    public class ParseRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = -5237329676597387063L;
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/exception/InvalidQueryExceptionTest.java

            final InvalidQueryException parseException = new InvalidQueryException(parseErrorCode, message);
    
            // Verify different message codes
            assertEquals(unknownErrorCode, unknownException.getMessageCode());
            assertEquals(parseErrorCode, parseException.getMessageCode());
            assertNotSame(unknownException.getMessageCode(), parseException.getMessageCode());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.6K bytes
    - Viewed (0)
Back to top