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

org.esbench.elastic.exceptions.InsertionFailure Maven / Gradle / Ivy

package org.esbench.elastic.exceptions;

import java.io.IOException;

/**
 * Thrown when document insertion failed for any reason.
 */
public class InsertionFailure extends IOException {
	private static final long serialVersionUID = -2220133404588519718L;

	public InsertionFailure(String message, Throwable cause) {
		super(message, cause);
	}

	public InsertionFailure(String message) {
		super(message);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy