All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.elasticsearch.search.highlight.RegexTooComplexException Maven / Gradle / Ivy

There is a newer version: 7.10.2
Show newest version
package org.elasticsearch.search.highlight;

import org.apache.lucene.util.automaton.TooComplexToDeterminizeException;

/**
 * Wraps Lucene's XTooComplexToDeterminizeException to be serializable to be
 * thrown over the wire.
 */
public class RegexTooComplexException extends RuntimeException {
    private static final long serialVersionUID = -41975279199116247L;

    public RegexTooComplexException(TooComplexToDeterminizeException e) {
        super(e.getMessage());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy