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

es.prodevelop.pui9.elasticsearch.exceptions.PuiElasticSearchSearchException Maven / Gradle / Ivy

package es.prodevelop.pui9.elasticsearch.exceptions;

/**
 * ElasticSearch exception when an error in the Search operation occurs
 * 
 * @author Marc Gil - [email protected]
 */
public class PuiElasticSearchSearchException extends AbstractPuiElasticSearchException {

	private static final long serialVersionUID = 1L;

	public static final Integer CODE = 309;

	public PuiElasticSearchSearchException(String cause) {
		this(CODE, cause);
	}

	public PuiElasticSearchSearchException(Integer code, String cause) {
		super(code, cause);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy