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

com.github.nicosensei.elasticindexbatch.SkipLimitExceededException Maven / Gradle / Ivy

/**
 * 
 */
package com.github.nicosensei.elasticindexbatch;

import org.apache.log4j.Level;

import com.github.nicosensei.textbatch.ToolException;

/**
 * @author nicolas
 *
 */
public class SkipLimitExceededException extends ToolException {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1095268691743122833L;

	public SkipLimitExceededException(final int skipLimit) {
		super(
			"OVER_SKIP_LIMIT", 
			"Exceeded skip limit of {0}", 
			new String[] { Integer.toString(skipLimit) }, 
			Level.FATAL);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy