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

org.lumongo.server.exceptions.InvalidIndexConfig Maven / Gradle / Ivy

The newest version!
package org.lumongo.server.exceptions;

public class InvalidIndexConfig extends Exception {
	
	private static final long serialVersionUID = 1L;
	private String indexName;
	
	public InvalidIndexConfig(String indexName, String message) {
		super("Index <" + indexName + "> has invalid configuration: " + message);
		this.indexName = indexName;
	}
	
	public String getIndexName() {
		return indexName;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy