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

io.zulia.server.exceptions.InvalidIndexConfig Maven / Gradle / Ivy

There is a newer version: 1.6.4
Show newest version
package io.zulia.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 - 2025 Weber Informatics LLC | Privacy Policy